mirror of
https://github.com/danbulant/slightlyComplicatedTicTacToe
synced 2026-07-07 20:20:36 +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">
|
<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>
|
||||||
Loading…
Reference in a new issue