diff --git a/source/_data/data.json b/source/_data/data.json
index 06a72fb03ae56880117bcf5b568a017c8630eee1..c00338c71ff782661bd6c3822aec763c2ddc368c 100644
--- a/source/_data/data.json
+++ b/source/_data/data.json
@@ -101,7 +101,7 @@
     "label": "Název políčka",
     "placeholder": "Placeholder"
   },
-  "calendarData": "[{\"title\": \"event 1\", \"date\": \"2023-04-01\", \"url\": \"https://example.com\"}, {\"title\": \"event 2\", \"date\": \"2023-04-01\", \"url\": \"https://example.com\"}, {\"title\": \"event 3\", \"date\": \"2023-04-01\", \"url\": \"https://example.com\"}, {\"title\": \"event 4\", \"date\": \"2023-04-01\", \"url\": \"https://example.com\"}, {\"title\": \"event 5\", \"date\": \"2023-04-01\", \"url\": \"https://example.com\"}, {\"title\": \"event 2\", \"date\": \"2023-04-10\", \"url\": \"https://example.com\"}]",
+  "calendarData": "[{\"title\": \"event 1\", \"date\": \"2024-03-02\", \"url\": \"https://example.com\"}, {\"title\": \"event 2\", \"date\": \"2024-04-01\", \"url\": \"https://example.com\"}, {\"title\": \"event 3\", \"date\": \"2024-03-02\", \"url\": \"https://example.com\"}, {\"title\": \"event 4\", \"date\": \"2023-04-01\", \"url\": \"https://example.com\"}, {\"title\": \"event 5\", \"date\": \"2023-04-01\", \"url\": \"https://example.com\"}, {\"title\": \"event 2\", \"date\": \"2023-04-10\", \"url\": \"https://example.com\"}]",
   "greyColors": [
     {"cls": "grey-50", "hex": "#f7f7f7", "name": "Grey 50"},
     {"cls": "grey-100", "hex": "#f3f3f3", "name": "Grey 100"},
diff --git a/source/css/atoms/full-calendar.pcss b/source/css/atoms/full-calendar.pcss
index 161296a8a3ac02be6147c074f26ed5db0ceee628..978ab2a4b84e3b0279058accb04b8d1bc7bb2247 100644
--- a/source/css/atoms/full-calendar.pcss
+++ b/source/css/atoms/full-calendar.pcss
@@ -9,6 +9,7 @@
   --fc-event-border-color: #fea86a;
   --fc-border-color: #ed9654;
   --fc-today-bg-color: #ed9654;
+  --fc-daygrid-event-dot-width: 4px;
 }
 
 .fc {
diff --git a/source/js/components/full-calendar/utils.js b/source/js/components/full-calendar/utils.js
index f211a9a421be91160c72b8934192708672eedc72..d92da5fabd1fc86f173a1f05f9523da343f78566 100644
--- a/source/js/components/full-calendar/utils.js
+++ b/source/js/components/full-calendar/utils.js
@@ -16,7 +16,15 @@ const showEventData = (info) => {
         info.el,
         {
             content: `
-                <div class="p-2 flex flex-col gap-3 text-white">
+                <div class="p-2 flex flex-col gap-3 text-white whitespace-nowrap">
+                    ${
+                        (info.event.title !== undefined) ?
+                        `
+                            <div class="flex gap-2 items-baseline">
+                                <div>${info.event.title}</div>
+                            </div>
+                        ` : ''
+                    }
                     ${
                         (info.event.extendedProps.location !== undefined) ?
                         `