mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-23 15:57:23 -04:00
Error messages were added to the yes/no fields on the invite user page in:
4c323a9a99
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;
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|