diff options
author | Kuuuube <61125188+Kuuuube@users.noreply.github.com> | 2024-06-20 11:58:11 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-20 15:58:11 +0000 |
commit | 33cbace1a266c896d9c6114f1b434086d65f77fa (patch) | |
tree | 70bd5c88143cdc450f1c3214c354b74e9a19db41 /ext/css/settings.css | |
parent | bba9ceb870a742bac1aef2c6ddd2b858917a2ea1 (diff) |
Set up down buttons to default button size when on mobile (#1094)
Diffstat (limited to 'ext/css/settings.css')
-rw-r--r-- | ext/css/settings.css | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/ext/css/settings.css b/ext/css/settings.css index 3c05906e..3716f50e 100644 --- a/ext/css/settings.css +++ b/ext/css/settings.css @@ -2638,3 +2638,13 @@ input[type=number].dictionary-priority { box-shadow: var(--shadow-right); } } + +/* Mobile overrides */ + +/* Treat devices that can't hover as mobile devices */ +@media (hover: none) { + #dictionary-move-up>span.icon-button-inner, + #dictionary-move-down>span.icon-button-inner { + width: 36px; + } +} |