diff options
Diffstat (limited to 'src/routes')
-rw-r--r-- | src/routes/index.svelte | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/routes/index.svelte b/src/routes/index.svelte index 655f0c4..bf54b6a 100644 --- a/src/routes/index.svelte +++ b/src/routes/index.svelte @@ -6,9 +6,9 @@ <style> .homescreen { - display: flex; - flex-direction: column; - justify-content: space-between; + display: grid; + grid-template-rows: 40vh auto; + grid-row-gap: 0; height: 100%; --bg-opacity: 1; background-color: #1a202c; |