(feat:background) Take up the whole screen

This commit is contained in:
KingRainbow44
2023-11-29 23:49:32 -05:00
parent f6b96612e0
commit 390d706a74
2 changed files with 11 additions and 0 deletions

View File

@@ -3,9 +3,17 @@
@tailwind utilities; @tailwind utilities;
body { body {
@apply w-full h-screen;
margin: 0; margin: 0;
outline: 0; outline: 0;
padding: 0; padding: 0;
overflow: hidden;
}
.App {
@apply w-full h-screen;
} }
p { p {

View File

@@ -0,0 +1,3 @@
.Launcher {
@apply flex w-full h-full;
}