mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-10 18:22:37 -04:00
Error messages were added to the yes/no fields on the invite user page in: https://github.com/alphagov/notifications-admin/commit/4c323a9a9918f6a6959a0153950b0bb5eec38cea This commit fixes the margins and padding on these fields so they look consistent with how we do validation errors elsewhere. t
43 lines
465 B
SCSS
43 lines
465 B
SCSS
.yes-no-wrapper {
|
|
border-bottom: 1px solid $border-colour;
|
|
margin: 0 0 $gutter 0;
|
|
}
|
|
|
|
.yes-no {
|
|
|
|
border-top: 1px solid $border-colour;
|
|
padding: 10px 0;
|
|
|
|
&-label {
|
|
|
|
padding-top: 19px;
|
|
float: left;
|
|
|
|
&.error {
|
|
padding-top: 5px;
|
|
}
|
|
|
|
}
|
|
|
|
&-fields {
|
|
|
|
text-align: right;
|
|
|
|
.block-label {
|
|
|
|
@include media(tablet) {
|
|
|
|
margin-bottom: 0;
|
|
|
|
&:last-child {
|
|
margin-right: 0;
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|