formatting

This commit is contained in:
Neko-Life 2023-07-15 16:08:16 +07:00
parent 5499097025
commit 2dc1f2c00e

View file

@ -1,30 +1,30 @@
<script lang="ts"> <script lang="ts">
import BackButton from '$lib/backButton.svelte'; import BackButton from '$lib/backButton.svelte';
</script> </script>
<svelte:head> <svelte:head>
<title>Ultimate tictactoe</title> <title>Ultimate tictactoe</title>
</svelte:head> </svelte:head>
<BackButton href="/" /> <BackButton href="/" />
<main class="flex items-center h-screen justify-center flex-col"> <main class="flex items-center h-screen justify-center flex-col">
<div class="container"> <div class="container">
<h1 class="text-4xl font-bold text-center">Rules</h1> <h1 class="text-4xl font-bold text-center">Rules</h1>
<div class="content"> <div class="content">
<p>Content</p> <p>Content</p>
</div> </div>
</div> </div>
</main> </main>
<style> <style>
.container { .container {
@apply w-full; @apply w-full;
max-width: 1024px; max-width: 1024px;
} }
.content { .content {
font-size: 24px; font-size: 24px;
} }
</style> </style>