// @page Pattern Library/Components
// @name Link lists
//
// @description
// The default list styling for lists that have anchors to take you to other pages.
//
// @markup
//
//
%list,
.us-list {
@extend %reset-box-model;
list-style: none;
li {
font-size: 16px;
margin: 0;
}
a {
@extend %anchor-link;
display: block;
padding-top: .5em;
padding-bottom: .5em;
}
a:hover {
color: $c-darker-grey;
}
.us-hero & {
margin-top: 1em;
}
}