1
0
Fork 0

UI: Fix navbar items missing on mobile

This commit is contained in:
Pablo Vazquez 2023-02-09 12:47:06 +01:00
commit 83b9250438

View file

@ -372,11 +372,16 @@ strong, b, h1, h2, h3, h4, h5, h6,
min-height: 45px; min-height: 45px;
} }
/* The Blender logo is already in the top-most bar. */ /* Hide the first link (app logo). */
.following.bar #navbar .brand { .following.bar #navbar .brand a:first-child {
display: none; display: none;
} }
/* Invert direction so navbar toggle are in the same place when logged in/out. */
.following.bar #navbar .brand {
flex-direction: row-reverse;
}
/* Navbar logo. */ /* Navbar logo. */
.item.brand a { .item.brand a {
opacity: .8; opacity: .8;