From 390d706a74814b715b59530731e4782f3dc667e1 Mon Sep 17 00:00:00 2001 From: KingRainbow44 Date: Wed, 29 Nov 2023 23:49:32 -0500 Subject: [PATCH] (feat:background) Take up the whole screen --- src/ui/css/App.scss | 8 ++++++++ src/ui/css/layout/Launcher.scss | 3 +++ 2 files changed, 11 insertions(+) create mode 100644 src/ui/css/layout/Launcher.scss diff --git a/src/ui/css/App.scss b/src/ui/css/App.scss index 93ce07d..bbc0dd9 100644 --- a/src/ui/css/App.scss +++ b/src/ui/css/App.scss @@ -3,9 +3,17 @@ @tailwind utilities; body { + @apply w-full h-screen; + margin: 0; outline: 0; padding: 0; + + overflow: hidden; +} + +.App { + @apply w-full h-screen; } p { diff --git a/src/ui/css/layout/Launcher.scss b/src/ui/css/layout/Launcher.scss new file mode 100644 index 0000000..9db9ab0 --- /dev/null +++ b/src/ui/css/layout/Launcher.scss @@ -0,0 +1,3 @@ +.Launcher { + @apply flex w-full h-full; +}