mirror of
https://github.com/wagtail/wagtail.git
synced 2024-11-25 13:10:14 +01:00
17 lines
271 B
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;
|
|
}
|