diff options
Diffstat (limited to 'client/src/routes')
| -rw-r--r-- | client/src/routes/index.svelte | 66 |
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 |
