mirror of
https://github.com/gethinode/hinode.git
synced 2025-10-12 12:33:20 +00:00
19 lines
416 B
SCSS
19 lines
416 B
SCSS
.alert code {
|
|
color: inherit;
|
|
}
|
|
|
|
/* stylelint-disable declaration-block-no-redundant-longhand-properties */
|
|
.alert a {
|
|
color: inherit;
|
|
|
|
&:link,
|
|
&:visited,
|
|
&:hover,
|
|
&:active {
|
|
text-decoration-line: underline;
|
|
text-decoration-style: dotted;
|
|
text-decoration-color: var(--bs-body);
|
|
}
|
|
}
|
|
/* stylelint-enable declaration-block-no-redundant-longhand-properties */
|