fix: Improve look of Favorites page

This commit is contained in:
Matej Stieranka 2025-06-24 18:19:18 +02:00
parent 741a509ef6
commit 878fdc7fb4

View file

@ -10,8 +10,8 @@ export default async function FavoritesPage() {
return (
<div className="flex flex-col items-center justify-items-center p-8 pb-20 gap-4 sm:p-20 w-full">
<h1 className="text-3xl font-bold mb-4">Oblíbené</h1>
<main className="flex flex-col gap-8 items-center">
<h1 className="text-3xl font-bold mb-4 w-full">Oblíbené</h1>
<main className="flex flex-col gap-8 w-full">
<EventList events={favorites} showDate showLine />
</main>
</div>