Add override to govuk-frontend button

The button style we were using had no bottom margin, but the
govuk-frontend button has a bottom margin of 10px. This override removes
the added margin to keep the look of our buttons consistent.
This commit is contained in:
Katie Smith
2020-02-17 08:05:05 +00:00
parent 66967e1d96
commit a62658ce8c
@@ -42,3 +42,7 @@
.govuk-footer__heading { .govuk-footer__heading {
@include govuk-font($size: 19, $weight: bold); @include govuk-font($size: 19, $weight: bold);
} }
.govuk-button {
margin-bottom: 0px;
}