panel: Move tabs around on smaller screens

This commit is contained in:
Tom Wiesing 2023-12-01 23:47:58 +01:00
parent b8a26ca797
commit 1b4c3f60e0
No known key found for this signature in database
5 changed files with 17 additions and 12 deletions

View file

@ -1,9 +1,14 @@
/* menu, tabs & breadcrumbs */
nav.tabs-menu {
float: left;
min-width: 10em;
margin: 5px;
/** on large screens move the menu to the lhs */
@media (min-width: 48em) {
nav.tabs-menu {
float: left;
min-width: 10em;
margin: 5px;
border: 1px solid black;
}
}
nav.top-menu, nav.breadcrumbs {