Files
att-hackathon-2023/Frontend/src/routes/contact/+page.svelte
T
2023-05-16 20:37:28 +02:00

13 lines
310 B
Svelte

<div class="height">
<div class="bg-[#05171E] rounded-lg w-3/4 h-full mx-auto mt-20 py-4 px-20">
<div class="text-white text-center text-3xl">Contact</div>
<div class="flex flex-row text-white mt-20 text-xl">patek@gbl.cz</div>
</div>
</div>
<style>
.height {
height: calc(100vh - 14rem);
}
</style>