0
0
mirror of https://github.com/wagtail/wagtail.git synced 2024-11-25 13:10:14 +01:00
wagtail/client/scss/components/_link.legacy.scss

17 lines
271 B
SCSS

// makes a link look like regular text
.nolink {
color: theme('colors.text-context');
&:hover {
color: theme('colors.text-link-hover');
}
@media (forced-colors: active) {
color: GrayText;
}
}
a.underlined {
border-bottom: 1px solid currentColor;
}