diff options
author | Thomas Lange <code@nerdmind.de> | 2017-11-20 23:34:34 +0100 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2017-11-20 23:34:34 +0100 |
commit | 99ca04955f79b18e19706fe50619284778189935 (patch) | |
tree | 9e7065df8b6114d02e062e27d0c08e5866b8d03f /template/admin/rsrc/main.css | |
parent | 146b74968f6a56163bf2a618addbb5a7a03f4684 (diff) | |
download | blog-99ca04955f79b18e19706fe50619284778189935.tar.gz blog-99ca04955f79b18e19706fe50619284778189935.tar.xz blog-99ca04955f79b18e19706fe50619284778189935.zip |
The rem units in media queries have been replaced by simple em units.
Diffstat (limited to 'template/admin/rsrc/main.css')
-rw-r--r-- | template/admin/rsrc/main.css | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/template/admin/rsrc/main.css b/template/admin/rsrc/main.css index ce56474..0f345a5 100644 --- a/template/admin/rsrc/main.css +++ b/template/admin/rsrc/main.css @@ -273,14 +273,14 @@ label:after{content:":";} /*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/ /* Responsive Level #1 /*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/ -@media only screen and (max-width:50rem) { +@media only screen and (max-width:50em) { html{font-size:1.125rem;/*18px*/background-image:none !important;} } /*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/ /* Responsive Level #2 /*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/ -@media only screen and (max-width:37.5rem) { +@media only screen and (max-width:37.5em) { .flex.flex-responsive{display:block;width:auto;} .flex.flex-responsive > .flex-item {width:100%;} .flex.flex-responsive > .flex-item + .flex-item{border-top:0.05rem solid #AAA;} |