mirror of
https://github.com/danbulant/slightlyComplicatedTicTacToe
synced 2026-06-21 07:42:30 +00:00
formatting
This commit is contained in:
parent
5499097025
commit
2dc1f2c00e
1 changed files with 15 additions and 15 deletions
|
|
@ -1,30 +1,30 @@
|
|||
<script lang="ts">
|
||||
import BackButton from '$lib/backButton.svelte';
|
||||
import BackButton from '$lib/backButton.svelte';
|
||||
</script>
|
||||
|
||||
<svelte:head>
|
||||
<title>Ultimate tictactoe</title>
|
||||
<title>Ultimate tictactoe</title>
|
||||
</svelte:head>
|
||||
|
||||
<BackButton href="/" />
|
||||
|
||||
<main class="flex items-center h-screen justify-center flex-col">
|
||||
<div class="container">
|
||||
<h1 class="text-4xl font-bold text-center">Rules</h1>
|
||||
<div class="container">
|
||||
<h1 class="text-4xl font-bold text-center">Rules</h1>
|
||||
|
||||
<div class="content">
|
||||
<p>Content</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p>Content</p>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
|
||||
<style>
|
||||
.container {
|
||||
@apply w-full;
|
||||
max-width: 1024px;
|
||||
}
|
||||
.container {
|
||||
@apply w-full;
|
||||
max-width: 1024px;
|
||||
}
|
||||
|
||||
.content {
|
||||
font-size: 24px;
|
||||
}
|
||||
.content {
|
||||
font-size: 24px;
|
||||
}
|
||||
</style>
|
||||
Loading…
Reference in a new issue