diff options
Diffstat (limited to 'web')
-rw-r--r-- | web/cobrands/sass/_base.scss | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/web/cobrands/sass/_base.scss b/web/cobrands/sass/_base.scss index 9f8778c90..ed8ea49ec 100644 --- a/web/cobrands/sass/_base.scss +++ b/web/cobrands/sass/_base.scss @@ -893,6 +893,13 @@ input.final-submit { font-size: 0.8em; } +// Most of our forms get their vertical spacing from the margin-top on labels. +// This means the final submit button can end up uncomfortably close to the +// bottom of the final input. Add a class of `btn--final` to fix this. +.btn--final { + margin-top: 1.25em; // matches margin-top on `label` +} + .js #js-social-email-hide { display: none; } |