💄 allow inline text and note links

This commit is contained in:
DrMaxNix 2024-02-19 16:57:37 +01:00
parent c45a6e4bf5
commit fa485928cc
1 changed files with 15 additions and 0 deletions

View File

@ -84,6 +84,21 @@ span {
a {
text-decoration: none;
}
span a {
color: var(--theme);
}
span a:hover {
text-decoration: underline;
cursor: pointer;
}
span.gray a {
color: var(--color-gray);
text-decoration: underline;
text-decoration-style: dotted;
}
span.gray a:hover {
text-decoration-style: solid;
}
button {
all: unset;
}