From 54eb22141c08c3f6ffac7c2a4a10aad201b9869e Mon Sep 17 00:00:00 2001 From: Deimos Date: Tue, 5 Nov 2019 20:58:49 -0700 Subject: [PATCH] Fix width of Search button in sidebar Whoops, this was working fine in Firefox on Linux but it seems like the Search button has been very wide on some other platforms/browsers. --- tildes/scss/modules/_sidebar.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tildes/scss/modules/_sidebar.scss b/tildes/scss/modules/_sidebar.scss index 4f71cc0..75794d9 100644 --- a/tildes/scss/modules/_sidebar.scss +++ b/tildes/scss/modules/_sidebar.scss @@ -21,6 +21,10 @@ .form-search { margin-top: 0; + .btn { + width: auto; + } + .form-input { max-width: unset; }