diff options
Diffstat (limited to 'web_src/less/_home.less')
-rw-r--r-- | web_src/less/_home.less | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/web_src/less/_home.less b/web_src/less/_home.less index 707c873279..fb31bedfa9 100644 --- a/web_src/less/_home.less +++ b/web_src/less/_home.less @@ -4,7 +4,7 @@ } .hero { - @media only screen and (max-width: 767px) { + @media @mediaSm { h1 { font-size: 3.5em; } @@ -14,7 +14,7 @@ } } - @media only screen and (min-width: 768px) { + @media @mediaMdAndUp { h1 { font-size: 5.5em; } @@ -52,7 +52,7 @@ footer { .ui.container .left, .ui.container .right { - @media only screen and (max-width: 880px) { + @media (max-width: 880px) { display: block; text-align: center; float: none; |