Various CSS and HTML changes

This commit is contained in:
Neshura 2023-08-12 19:58:51 +02:00
parent 1c92cb8418
commit a2726d70a9
Signed by: Neshura
GPG key ID: B6983AAA6B9A7A6C
5 changed files with 26 additions and 17 deletions

View file

@ -6,9 +6,7 @@
<div class="app"> <div class="app">
<Header /> <Header />
<main> <slot />
<slot />
</main>
</div> </div>
<style> <style>

View file

@ -1,8 +1,10 @@
<script> <script lang="ts">
import SubNav from './SubNav.svelte'; import SubNav from './SubNav.svelte';
import '../styles.css'; import '../styles.css';
</script> </script>
<div class="app"> <div class="app">
<SubNav /> <SubNav />

View file

@ -1,16 +1,4 @@
<script>
import { page } from '$app/stores';
</script>
<svelte:head> <svelte:head>
<title>Graphs</title> <title>Graphs</title>
<meta name="description" content="Chellaris Sign-Up Graphs" /> <meta name="description" content="Chellaris Sign-Up Graphs" />
</svelte:head> </svelte:head>
<h1>WIP</h1>
<style>
h1 {
width: 100%;
}
</style>

View file

@ -1 +1,6 @@
<svelte:head>
<title>Graphs</title>
<meta name="description" content="Chellaris Sign-Up Graphs" />
</svelte:head>
<h1>Example Tab</h1> <h1>Example Tab</h1>

View file

@ -0,0 +1,16 @@
<script>
import { page } from '$app/stores';
</script>
<svelte:head>
<title>Graphs</title>
<meta name="description" content="Chellaris Sign-Up Graphs" />
</svelte:head>
<h1>WIP</h1>
<style>
h1 {
width: 100%;
}
</style>