From f7e71e7cc31c428517887244c19b3dcb171f2ced Mon Sep 17 00:00:00 2001 From: Oliver-Akins Date: Tue, 8 Dec 2020 15:02:48 -0700 Subject: [PATCH] Add the first view and the attributions bar. --- web/src/App.vue | 35 +++++++++++++++++++++++++++++++---- 1 file changed, 31 insertions(+), 4 deletions(-) diff --git a/web/src/App.vue b/web/src/App.vue index 2e10dac..29963de 100644 --- a/web/src/App.vue +++ b/web/src/App.vue @@ -1,14 +1,41 @@ +html, body { + background-color: var(--background1); + color: var(--light-font-colour); + font-family: var(--fonts); + overflow: hidden; + height: 100vh; + width: 100vw; + padding: 0; + margin: 0; +} + \ No newline at end of file