From 373fdb12b08dac2823f102c8b1f37ce97536d19a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Valenta?= <git@imaniti.org> Date: Mon, 8 May 2023 20:36:17 +0200 Subject: [PATCH] update styles --- source/css/atoms/full-calendar.pcss | 4 ++++ source/js/components/full-calendar/MonthCalendar.vue | 1 + source/js/components/full-calendar/YearCalendar.vue | 1 + 3 files changed, 6 insertions(+) diff --git a/source/css/atoms/full-calendar.pcss b/source/css/atoms/full-calendar.pcss index d0fd189..161296a 100644 --- a/source/css/atoms/full-calendar.pcss +++ b/source/css/atoms/full-calendar.pcss @@ -51,6 +51,10 @@ @apply font-alt text-3xl text-orange-300; } +.fc .fc-multimonth-daygrid .fc-daygrid-day-number { + @apply text-base; +} + .fc .fc-day-today .fc-daygrid-day-number { @apply text-white; } diff --git a/source/js/components/full-calendar/MonthCalendar.vue b/source/js/components/full-calendar/MonthCalendar.vue index 4fcfabd..d317a13 100644 --- a/source/js/components/full-calendar/MonthCalendar.vue +++ b/source/js/components/full-calendar/MonthCalendar.vue @@ -18,6 +18,7 @@ export default { buttonText: { today: "dnes" }, + moreLinkContent: (arg) => { return `+${arg.num} dalšĂ` }, events: JSON.parse(this.events) } } diff --git a/source/js/components/full-calendar/YearCalendar.vue b/source/js/components/full-calendar/YearCalendar.vue index 3ef7801..11fcbb8 100644 --- a/source/js/components/full-calendar/YearCalendar.vue +++ b/source/js/components/full-calendar/YearCalendar.vue @@ -19,6 +19,7 @@ export default { buttonText: { today: "dnes" }, + moreLinkContent: (arg) => { return `+${arg.num} dalšĂ` }, events: JSON.parse(this.events) } } -- GitLab