diff --git a/source/css/atoms/full-calendar.pcss b/source/css/atoms/full-calendar.pcss index d0fd18940712d0ea164d06fe4bea65e529dc8828..161296a8a3ac02be6147c074f26ed5db0ceee628 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 4fcfabd8844d21d85220ab445d60887fb109e26e..d317a13f7a5ae3ee7bf152d5166f8f8b0f4ba226 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 3ef7801929239c4b41ec7b871549b95d61db92ab..11fcbb8dcbca6252aef9805b6c46487857cdc293 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) } }