initial frontend

This commit is contained in:
2024-10-20 12:37:40 -07:00
parent 4d5b525288
commit e22245998f
29 changed files with 338 additions and 7 deletions

View File

@@ -0,0 +1,17 @@
$light-gray: #d0d1d0;
$dark-gray: #303031;
$text-color: $light-gray;
$background-color: $dark-gray;
body {
color: $text-color;
background-color: $background-color;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
align-content: center;
min-height: 100vh;
}