From fb8cb3db43c38e5a984cf4a45b5b9def311cf0a0 Mon Sep 17 00:00:00 2001 From: toasted-nutbread Date: Thu, 5 Sep 2019 18:45:42 -0400 Subject: [PATCH] Collapse two-column options on smaller screens --- ext/bg/settings.html | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/ext/bg/settings.html b/ext/bg/settings.html index ccd749b9..093a3c26 100644 --- a/ext/bg/settings.html +++ b/ext/bg/settings.html @@ -49,6 +49,16 @@ [data-browser=firefox-mobile] [data-show-for-browser~=firefox-mobile] { display: initial; } + + @media screen and (max-width: 740px) { + .col-xs-6 { + float: none; + width: 100%; + } + .col-xs-6+.col-xs-6 { + margin-top: 15px; + } + }