Files
notifications-admin/app/assets/stylesheets/components/browse-list.scss
2020-02-24 11:56:38 +00:00

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;
}
}