From 4508ba3fbda33aca473c9877580ec90886b2092f Mon Sep 17 00:00:00 2001 From: minie4 Date: Sun, 4 Jun 2023 12:49:48 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=84=20Make=20loading=20bar=20an=20over?= =?UTF-8?q?lay?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/App.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/App.vue b/src/App.vue index 1e2df4e..aac9497 100644 --- a/src/App.vue +++ b/src/App.vue @@ -65,7 +65,9 @@ body { .app { display: grid; - grid-template-rows: auto auto 1fr; + /* Make the loading bar 0px in height so it overlays + instead of being in between navbar and content */ + grid-template-rows: auto 0 1fr; color: var(--text-color); background-color: var(--bg-color); font-family: var(--font-family);