diff options
| author | Alexandre Flament <alex@al-f.net> | 2021-10-20 17:38:46 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-10-20 17:38:46 +0200 |
| commit | 8116cfb006abb4e940ad24f6ff1139765f29214e (patch) | |
| tree | 568444dbbf83fe943ff54efb55219623407a44e5 /searx/static/themes/simple/src/less/index.less | |
| parent | 32fb2bdf857aca1e38ac4186af06bac0540fe311 (diff) | |
| parent | 9ff0a91fcad3d2b531d0eca725327da62163dca5 (diff) | |
Merge pull request #419 from MrPaulBlack/media-queries-names
[simple theme] less vars for different device sizes
Diffstat (limited to 'searx/static/themes/simple/src/less/index.less')
| -rw-r--r-- | searx/static/themes/simple/src/less/index.less | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/searx/static/themes/simple/src/less/index.less b/searx/static/themes/simple/src/less/index.less index a74988a72..64bfda06a 100644 --- a/searx/static/themes/simple/src/less/index.less +++ b/searx/static/themes/simple/src/less/index.less @@ -35,7 +35,7 @@ } } -@media screen and (max-width: 80em) { +@media screen and (max-width: @tablet) { div.title { h1 { font-size: 1em; @@ -47,7 +47,7 @@ } } -@media screen and (max-width: 50em) { +@media screen and (max-width: @phone) { #main_index { margin-top: 0; } |