diff options
author | Jakob Stendahl <jakobste@uio.no> | 2020-10-14 13:19:39 +0200 |
---|---|---|
committer | Jakob Stendahl <jakobste@uio.no> | 2020-10-14 13:19:39 +0200 |
commit | 57c5a27e8590bf1e847842ae6c9e8c82e959ccd3 (patch) | |
tree | a75790bbe8898c64178a286532c4a187abd2d39e /src/routes/index.svelte | |
parent | 606c645dd9a883c4e3c0a64cb92d56a1445d8341 (diff) | |
download | Aurora-data-57c5a27e8590bf1e847842ae6c9e8c82e959ccd3.tar.gz Aurora-data-57c5a27e8590bf1e847842ae6c9e8c82e959ccd3.zip |
Clean up some js, and make the UI a bit prettier
Diffstat (limited to 'src/routes/index.svelte')
-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; |