diff options
| author | Paul Braeuning <paul@paulgo.io> | 2021-11-12 10:21:59 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-12 10:21:59 +0100 |
| commit | e839910f4c4b085463f1522b4191448935468b53 (patch) | |
| tree | f326f496b4a6daff27d2518f7b38f3688a479937 /searx/static/themes/simple/css/searxng.css | |
| parent | e030b543fb93a140739dd5cfbb9bb5e91c6e9411 (diff) | |
| parent | 9badec0260b1a390d6b23d29b41351a33e6a5411 (diff) | |
Merge pull request #491 from MrPaulBlack/fix-mobile-result-scaling
[fix] mobile result scaling in simple theme
Diffstat (limited to 'searx/static/themes/simple/css/searxng.css')
| -rw-r--r-- | searx/static/themes/simple/css/searxng.css | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/searx/static/themes/simple/css/searxng.css b/searx/static/themes/simple/css/searxng.css index cae7a11be..554815c1b 100644 --- a/searx/static/themes/simple/css/searxng.css +++ b/searx/static/themes/simple/css/searxng.css @@ -2513,7 +2513,7 @@ article.result-images .detail { flex-direction: row; } #q { - width: auto !important; + width: 100%; flex: 1; } #main_results #q:placeholder-shown ~ #send_search { @@ -2536,6 +2536,14 @@ article.result-images .detail { padding: 10px !important; } } +@media screen and (max-width: 20rem) { + #search { + grid-template-areas: "search search" "categories categories"; + } + #search_logo { + display: none; + } +} #categories { margin: 0 10px 0 0; -webkit-touch-callout: none; |