feat: Initial SiteFooter

This commit is contained in:
2026-03-26 11:07:07 -04:00
parent fa557c0f9e
commit 9181f91e7c
10 changed files with 90 additions and 13 deletions

View File

@@ -0,0 +1,13 @@
/* Variant to target all children links without specific link or button classes */
@custom-variant links (& a:not([class*='link-']):not([class*='button-']));
/* Link styles */
@utility link-base {
@apply cursor-pointer transition;
}
@utility link-underline {
@apply link-base underline hover:decoration-primary;
}
@utility link-opacity {
@apply link-base hover:opacity-80;
}