From e5c968933ec57c5d79540d7c089504f90e2a87db Mon Sep 17 00:00:00 2001 From: Ethan Girouard Date: Sat, 20 Jun 2026 14:41:31 -0400 Subject: [PATCH] Add interact style --- style/tailwind.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/style/tailwind.css b/style/tailwind.css index a37e38a..848b7b3 100644 --- a/style/tailwind.css +++ b/style/tailwind.css @@ -9,3 +9,11 @@ @source not "*"; @source "./src/**/*.{rs,html,css}"; + +@layer utilities { + .interact { + @apply cursor-pointer; + @apply hover:text-base-content/70; + @apply active:text-primary active:translate-y-[.5px] active:shadow-(--btn-shadow); + } +}