From 552a572ef0c5e40c048ee93eced7f32cf8b03daa Mon Sep 17 00:00:00 2001 From: Deimos Date: Thu, 17 Jan 2019 16:57:13 -0700 Subject: [PATCH] Don't let status messages shrink form buttons When a form status message is displayed (often an error), it could cause the button to be shrunk, making it look strange (sometimes the text would even become larger than the button background). This prevents it from being able to shrink and will cause the message to wrap instead. --- tildes/scss/modules/_form.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/tildes/scss/modules/_form.scss b/tildes/scss/modules/_form.scss index 96b225f..e34ae43 100644 --- a/tildes/scss/modules/_form.scss +++ b/tildes/scss/modules/_form.scss @@ -38,6 +38,7 @@ select.form-select:not([multiple]) { button { margin-left: 0.4rem; + flex-shrink: 0; } }