mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-06-05 05:50:41 -04:00
Using `-govuk-spacing(n)` in the SASS files was not working, so this replaces it with `-1 * govuk-spacing(n)` instead.
20 lines
266 B
SCSS
20 lines
266 B
SCSS
.notification-status {
|
|
|
|
@include core-16;
|
|
color: $secondary-text-colour;
|
|
margin-top: -1 * govuk-spacing(3);
|
|
|
|
&.error {
|
|
|
|
color: $govuk-error-colour;
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
&-cancelled {
|
|
@include bold-19;
|
|
color: $govuk-error-colour;
|
|
}
|
|
|
|
}
|