Is it possible to go back to the old navigation design ? The left menu where the files are looks terrible on the iPhone and iPad now adays. I am trying with CSS but it gets messy.
Anyone ? I need the css class name or a way to be able to find it myself. The old way of using the dev tools on the computer no longer work, even in mobile view activated.
Got an answer here:
I solved it like this:
.is-phone .workspace-drawer-tab-options {
order: 1;
}
.is-phone .workspace-drawer-active-tab-content {
order: 2;
}
.is-phone .workspace-drawer-tab-options-list {
padding-top: var(--touch-size-l) !important;
padding-bottom: var(--size-4-2) !important;
bottom: unset !important;
top: 0 !important;
}
