diff options
author | Mario Vavti <mario@mariovavti.com> | 2017-11-19 21:41:45 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2017-11-19 21:41:45 +0100 |
commit | 3efe144fa0c455529a3f6244557d1253885134cf (patch) | |
tree | d3f8b9bf3da6da75fcacc3cd7881ecefdf605a3e /view/css | |
parent | 744960d36d636f8840f8bcea13283ea7f97cc4e6 (diff) | |
download | volse-hubzilla-3efe144fa0c455529a3f6244557d1253885134cf.tar.gz volse-hubzilla-3efe144fa0c455529a3f6244557d1253885134cf.tar.bz2 volse-hubzilla-3efe144fa0c455529a3f6244557d1253885134cf.zip |
revisit media breakpoints - do not switch to mobile view to early.
Diffstat (limited to 'view/css')
-rw-r--r-- | view/css/bootstrap-red.css | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/view/css/bootstrap-red.css b/view/css/bootstrap-red.css index 18efd69e4..a0b7c5bba 100644 --- a/view/css/bootstrap-red.css +++ b/view/css/bootstrap-red.css @@ -11,7 +11,7 @@ nav .dropdown-menu { min-width: 16rem; } -@media screen and (min-width: 767px) { +@media screen and (min-width: 992px) { nav .badge { top: 0px; left: 0px; @@ -19,7 +19,7 @@ nav .dropdown-menu { } } -@media screen and (max-width: 767px) { +@media screen and (max-width: 992px) { .navbar { padding: .5rem 7px; } |