diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2016-03-14 16:03:45 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2016-03-14 16:03:45 +0200 |
commit | b9b3cc636ae72f0dc079d0975f58a453afe41915 (patch) | |
tree | 4949d3176ea39e2f62e3c88a5c957375eafa12a8 /www | |
parent | 218cd07992a715246076128ebf7ff67275f4dce0 (diff) |
Add menu degradation assuming 4-6 entries
Diffstat (limited to 'www')
-rw-r--r-- | www/brep-common.css | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/www/brep-common.css b/www/brep-common.css index cd13157..81fc909 100644 --- a/www/brep-common.css +++ b/www/brep-common.css @@ -1,3 +1,13 @@ +/* Assume 4-6 menu entries for mobile degradation. */ +@media only screen and (max-width: 567px) +{ + #header-menu-body + { + -webkit-flex-direction: column; + flex-direction: column; + } +} + /* * Form layout table. */ |