From a39da8accb979e34ac94ffc5a57d770ecf922807 Mon Sep 17 00:00:00 2001 From: Konrad Mohrfeldt <konrad.mohrfeldt@farbdev.org> Date: Tue, 26 Mar 2024 21:20:50 +0100 Subject: [PATCH] fix(calendar): use full-calendar provided custom properties for text color fixes #207 --- src/assets/styles/tailwind.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/assets/styles/tailwind.css b/src/assets/styles/tailwind.css index 6c9ab16d..d0935a03 100644 --- a/src/assets/styles/tailwind.css +++ b/src/assets/styles/tailwind.css @@ -30,7 +30,7 @@ footer a:hover { padding: 1px 2px; background-color: theme('colors.gray.600'); border-color: theme('colors.gray.900'); - color: white; + --fc-event-text-color: white; } .fc-scroller { @@ -40,7 +40,7 @@ footer a:hover { .otherShow { background-color: theme('colors.gray.300'); border-color: theme('colors.gray.400'); - color: theme('colors.gray.900'); + --fc-event-text-color: theme('colors.gray.900'); } .otherShow:hover { -- GitLab