🔥 fix: remove border and background from empty events skeleton

This commit is contained in:
2026-04-08 09:15:05 -04:00
parent 9dfd4ef326
commit b93669a416

View File

@@ -19,7 +19,6 @@ export const EventsList = ({ events, onEdit, onDelete }: EventsListProps) => {
animate={{ opacity: 1 }}
className="flex flex-col items-center justify-center py-16 text-center"
>
<div className="glass-card p-6 inline-flex flex-col items-center">
<Calendar1Icon className="h-10 w-10 text-muted-foreground/40 mb-3" />
<h3 className="text-sm font-medium text-muted-foreground">
No events yet
@@ -27,7 +26,6 @@ export const EventsList = ({ events, onEdit, onDelete }: EventsListProps) => {
<p className="text-xs text-muted-foreground/60 mt-1">
Create your first event to get started
</p>
</div>
</motion.div>
);
}