diff options
Diffstat (limited to 'app/javascript/styles/forms.scss')
-rw-r--r-- | app/javascript/styles/forms.scss | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/app/javascript/styles/forms.scss b/app/javascript/styles/forms.scss index d66359943..ce31f01af 100644 --- a/app/javascript/styles/forms.scss +++ b/app/javascript/styles/forms.scss @@ -159,9 +159,11 @@ code { .actions { margin-top: 30px; + display: flex; } button, + .button, .block-button { display: block; width: 100%; @@ -170,6 +172,8 @@ code { background: $ui-highlight-color; color: $primary-text-color; font-size: 18px; + line-height: inherit; + height: auto; padding: 10px; text-transform: uppercase; text-decoration: none; @@ -179,6 +183,11 @@ code { font-weight: 500; outline: 0; margin-bottom: 10px; + margin-right: 10px; + + &:last-child { + margin-right: 0; + } &:hover { background-color: lighten($ui-highlight-color, 5%); |