Spaces:
Running
Running
gpt-engineer-app[bot]
commited on
Commit
·
c0627c7
1
Parent(s):
2ae165b
Fix: Correct conference date display
Browse filesThe calendar display of conference dates was incorrectly spanning multiple days. This commit addresses the issue to ensure accurate visual representation.
- src/pages/Calendar.tsx +1 -1
src/pages/Calendar.tsx
CHANGED
@@ -195,7 +195,7 @@ const CalendarPage = () => {
|
|
195 |
return (
|
196 |
<div
|
197 |
key={conf.id}
|
198 |
-
className={`h-0.5 w-full ${categoryColor} ${!isFirstDay
|
199 |
title={conf.title}
|
200 |
/>
|
201 |
);
|
|
|
195 |
return (
|
196 |
<div
|
197 |
key={conf.id}
|
198 |
+
className={`h-0.5 w-full ${categoryColor} ${!isFirstDay ? '-ml-[1px]' : ''} ${!isLastDay ? '-mr-[1px]' : ''}`}
|
199 |
title={conf.title}
|
200 |
/>
|
201 |
);
|