style: move event-view-card to the middle of the screen
All checks were successful
container-scan / Container Scan (pull_request) Successful in 2m26s
docker-build / docker (pull_request) Successful in 3m23s
tests / Tests (pull_request) Successful in 3m6s

This commit is contained in:
micha 2025-06-30 11:16:38 +02:00
parent 9af74e4df4
commit 1c082b9eb1

View file

@ -70,6 +70,7 @@ export default function ShowEvent() {
};
return (
<div className='flex items-center justify-center h-screen'>
<Card className='w-[80%] max-w-screen p-0 gap-0 max-xl:w-[95%] mx-auto'>
<CardHeader className='p-0 m-0 gap-0' />
@ -232,5 +233,6 @@ export default function ShowEvent() {
</div>
</CardContent>
</Card>
</div>
);
}