diff options
author | ManeraKai <manerakai@protonmail.com> | 2024-01-29 18:15:31 +0300 |
---|---|---|
committer | ManeraKai <manerakai@protonmail.com> | 2024-01-29 18:15:31 +0300 |
commit | fc6218c84d20860328e6d3ef3b79ab4fb04bed11 (patch) | |
tree | 84eae02a895d1b324eb18b39ea6a85eb2c73e7e2 /src/pages/popup/style.css | |
parent | Fixed tapping on settings in popup not focusing https://github.com/libredirec... (diff) | |
download | libredirect-fc6218c84d20860328e6d3ef3b79ab4fb04bed11.zip |
Made popup mobile-friendly https://github.com/libredirect/browser_extension/issues/874
Diffstat (limited to 'src/pages/popup/style.css')
-rw-r--r-- | src/pages/popup/style.css | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/src/pages/popup/style.css b/src/pages/popup/style.css index 6c258d75..5e39b4ed 100644 --- a/src/pages/popup/style.css +++ b/src/pages/popup/style.css @@ -36,7 +36,6 @@ input { width: 46px; } - div.block label { margin: 0; font-size: 18px; @@ -50,4 +49,17 @@ div.block label:hover { div.block div { display: flex; +} + +html.mobile body { + width: 100%; +} + +html.mobile div.block label { + font-size: 24px; +} + +html.mobile .button svg { + width: 30px; + height: 30px; } \ No newline at end of file |