Display <a> tags without children in turquoise (in <main>)

This commit is contained in:
Viyurz 2024-09-28 13:46:27 +02:00
parent fa420b1702
commit 038f878b3d
Signed by: Viyurz
SSH key fingerprint: SHA256:IskOHTmhHSJIvAt04N6aaxd5SZCVWW1Guf9tEcxIMj8

View file

@ -54,12 +54,14 @@
}
nav a,
footer a {
footer a,
main a:not(:has(*)) {
@apply hover:text-turquoise;
@apply hover:text-opacity-75;
}
.active-page {
.active-page,
main a:not(:has(*)) {
@apply text-turquoise;
}
}