Mobile Interface Improvement

An idea for mobile would be to minimize the menu to focus solely on the swimlanes. Moving tasks from one column to the next is difficult even with the crosshairs as it is such a small area and easy to miss. A better option would be to use something like a colored border along the side or top of the task with aome decent width.

As many people who use project management are not using computers but are active and on mobile, this would help a lot.

2 Likes

That’s a great idea :slight_smile:

I might be able to do something like this in CSS. If yes I’ll share the trick.

2 Likes

Nothing fancy or super sophisticated but for me, it worked to add in my custom CSS at the admin

.fa-arrows-alt {
    font-size: 2.2em;
}

Which made super easier for me moving task on my phone.

1 Like

Remember fa-arrows-alt used for desktops as well in other locations, might look a tad weird. eg:
image
For up to tablet size:

@media (max-width: 768px)  {
    .fa-arrows-alt {
        font-size: 2.2em;
    }
}

Or you can limit it to just the board but for all devices:

#board .fa-arrows-alt {
    font-size: 2.2em;
}