fix description overflow

This commit is contained in:
2025-08-16 11:34:47 -04:00
parent e7de213c18
commit 6ec15c9124

View File

@@ -274,7 +274,7 @@ export default function HomePage() {
{ev.allDay ? ev.start.split('T')[0] : new Date(ev.start).toLocaleString()} {ev.allDay ? ev.start.split('T')[0] : new Date(ev.start).toLocaleString()}
{ev.location && <span> @ {ev.location}</span>} {ev.location && <span> @ {ev.location}</span>}
</div> </div>
{ev.description && <div className="text-sm mt-1">{ev.description}</div>} {ev.description && <div className="text-sm mt-1 wrap-anywhere">{ev.description}</div>}
</div> </div>
<div className="flex gap-2"> <div className="flex gap-2">
<Button size="sm" onClick={() => { <Button size="sm" onClick={() => {