public/assets/css/main.scss

23 lines
420 B
SCSS
Raw Permalink Normal View History

2023-02-25 12:33:30 -05:00
@import "base.scss";
.prose article {
@include headings {
& > a:hover,
& > a:active {
text-decoration: underline;
text-decoration-skip-ink: all;
2023-06-11 21:23:58 -04:00
@apply text-blue-700 dark:text-blue-400;
2023-02-25 12:33:30 -05:00
&::before {
content: "#";
position: absolute;
opacity: 0.5;
left: -2rem;
}
}
}
a:hover {
@apply hover:text-blue-700 dark:hover:text-blue-400;
}
}