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