shelving
Version:
Toolkit for using data in JavaScript.
24 lines (19 loc) • 396 B
CSS
@import "../style/base.css";
@layer components {
.link,
.prose a {
/* Style */
color: var(--link-weight, var(--color-link));
text-decoration: none;
cursor: inherit;
/* Typography */
font-weight: var(--link-weight, var(--weight-strong));
&:any-link {
cursor: pointer;
text-decoration: underline var(--stroke-normal);
&:hover {
text-decoration: none;
}
}
}
}