From 33cbace1a266c896d9c6114f1b434086d65f77fa Mon Sep 17 00:00:00 2001 From: Kuuuube <61125188+Kuuuube@users.noreply.github.com> Date: Thu, 20 Jun 2024 11:58:11 -0400 Subject: Set up down buttons to default button size when on mobile (#1094) --- ext/css/settings.css | 10 ++++++++++ 1 file changed, 10 insertions(+) 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; + } +} -- cgit v1.2.3