oneliners: allow ulrbar-container to shrink a bit

This fixes a problem where urlbar would cause items in the toolbar to
overflow the whole toolbar too early
This commit is contained in:
MrOtherGuy
2023-05-14 10:36:41 +03:00
parent c09e848846
commit 8aab757dda
3 changed files with 12 additions and 3 deletions
@@ -49,7 +49,10 @@ Window controls will be all wrong without it
/* prevent urlbar overflow on narrow windows */
/* Dependent on how many items are in navigation toolbar ADJUST AS NEEDED */
@media screen and (max-width: 1000px){
#urlbar-container{ min-width:unset !important }
#urlbar-container{
min-width: 300px !important;
flex-shrink: 1 !important;
}
}
#TabsToolbar{