From afc07d8adfe898e5347ded592b7b0543570d7de3 Mon Sep 17 00:00:00 2001 From: evazion Date: Fri, 7 Aug 2020 10:32:36 -0500 Subject: [PATCH] css: fix padding beneath buttons in dialog boxes. Fix not having any space between the Submit / Cancel buttons and the bottom of the dialog box. For some reason this only happens in production, not development. --- app/javascript/src/styles/common/simple_form.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/javascript/src/styles/common/simple_form.scss b/app/javascript/src/styles/common/simple_form.scss index 9ae65ee57..e999b0dab 100644 --- a/app/javascript/src/styles/common/simple_form.scss +++ b/app/javascript/src/styles/common/simple_form.scss @@ -128,7 +128,7 @@ div.ui-dialog { /* the submit and close buttons */ .ui-dialog-buttonpane { margin-top: 0; - padding: 1em 1em 0 0; + padding: 1em 1em 1em 0; .ui-button { margin: 0 0.25em;