Compare commits

..

1 Commits

Author SHA1 Message Date
29a67ff870
Remove special link class
Some checks failed
continuous-integration/drone/push Build is failing
continuous-integration/drone/pr Build is failing
This cleans up the code quite a bit, but also allows links in editable
content to be rendered with the default style.
2025-05-29 16:07:18 +04:00

View File

@ -61,10 +61,12 @@
@apply leading-6; @apply leading-6;
} }
main section a:not(nav > *):not(data-tabs-target=[tab] > *) { main a:not(nav > *),
main a:not([data-tabs-target="tab"] {
@apply text-blue-600; @apply text-blue-600;
&:hover { @apply underline; } &:hover { @apply underline; }
&:visited { @apply text-indigo-600; } &:visited { @apply text-indigo-600; }
&:active { @apply text-red-600; } &:active { @apply text-red-600; }
} }
} }