File size: 353 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
// Search term suggestions
.reader-blank-suggestions {
font-size: $font-body-small;
color: var(--color-text-subtle);
padding: 16px 0;
text-align: left;
a,
a:visited {
font-weight: 500;
color: var(--color-neutral-60);
}
a:hover {
color: var(--color-neutral-60);
}
@include breakpoint-deprecated( "<660px" ) {
padding: 16px 0 0;
}
}
|