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;
|
|
|
|
}
|
|
|
|
}
|