mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-11 09:28:27 -04:00
With the `<h2>`s on this page it’s fairly explicit what the page is listing, so user doesn’t need the context provided by the `<h1>`.
44 lines
673 B
SCSS
44 lines
673 B
SCSS
.browse-list {
|
|
margin-bottom: $gutter-half;
|
|
|
|
.browse-sub-list {
|
|
margin-top: $gutter-half;
|
|
margin-left: $gutter;
|
|
@include media('desktop') {
|
|
margin-left: $gutter * 2;
|
|
}
|
|
}
|
|
|
|
&-item,
|
|
&-sub-item {
|
|
@include bold-24;
|
|
list-style: none;
|
|
margin-bottom: $gutter-half;
|
|
}
|
|
|
|
&-link {
|
|
@include bold-24;
|
|
|
|
&-destructive {
|
|
@include bold-24;
|
|
color: $error-colour;
|
|
|
|
&:visited,
|
|
&:link {
|
|
@include bold-24;
|
|
color: $error-colour;
|
|
}
|
|
|
|
&:hover {
|
|
color: $mellow-red;
|
|
}
|
|
}
|
|
}
|
|
|
|
&-hint {
|
|
@include core-19;
|
|
margin: 5px 0 10px 0;
|
|
color: $secondary-text-colour;
|
|
}
|
|
}
|