about summary refs log tree commit diff
path: root/client/src/routes/index.svelte
diff options
context:
space:
mode:
authorMelonai <einebeere@gmail.com>2021-03-24 09:51:36 +0100
committerMelonai <einebeere@gmail.com>2021-03-24 09:51:36 +0100
commit42860fa15985401825d8d51e73ec497fe5876710 (patch)
treedaa43dd5f4ac77e46dbdd78b1a07811fa5db755c /client/src/routes/index.svelte
parent5dde1f55d818a74e838afa37b0e20217b1549a83 (diff)
downloadshorest-42860fa15985401825d8d51e73ec497fe5876710.tar.zst
shorest-42860fa15985401825d8d51e73ec497fe5876710.zip
Update SvelteKit to public beta
Diffstat (limited to 'client/src/routes/index.svelte')
-rw-r--r--client/src/routes/index.svelte66
1 files changed, 33 insertions, 33 deletions
diff --git a/client/src/routes/index.svelte b/client/src/routes/index.svelte
index 5e51f13..965d169 100644
--- a/client/src/routes/index.svelte
+++ b/client/src/routes/index.svelte
@@ -1,44 +1,44 @@
 <script lang="ts">
-	import Title from '$components/Title.svelte';
-	import Form from '$components/Form.svelte';
-	import Responses from '$components/Responses.svelte';
+    import Title from '$lib/components/Title.svelte';
+    import Form from '$lib/components/Form.svelte';
+    import Responses from '$lib/components/Responses.svelte';
 </script>
 
 <style>
-	main {
-		width: 100%;
-		height: 100%;
-		display: flex;
-		flex-direction: column;
-		justify-content: center;
-		align-items: center;
-		overflow: hidden;
-	}
+    main {
+        width: 100%;
+        height: 100%;
+        display: flex;
+        flex-direction: column;
+        justify-content: center;
+        align-items: center;
+        overflow: hidden;
+    }
 
-	.output {
-		position: absolute;
-		top: 175px;
-		width: 100%;
-	}
+    .output {
+        position: absolute;
+        top: 175px;
+        width: 100%;
+    }
 
-	.content {
-		position: relative;
-		width: 80%;
-	}
+    .content {
+        position: relative;
+        width: 80%;
+    }
 
-	@media (min-width: 800px) {
-		.content {
-			width: 40%;
-		}
-	}
+    @media (min-width: 800px) {
+        .content {
+            width: 40%;
+        }
+    }
 </style>
 
 <main>
-	<div class="content">
-		<Title/>
-		<Form/>
-		<div class="output">
-			<Responses/>
-		</div>
-	</div>
+    <div class="content">
+        <Title/>
+        <Form/>
+        <div class="output">
+            <Responses/>
+        </div>
+    </div>
 </main>
\ No newline at end of file