main page overhaul
This commit is contained in:
@@ -1,2 +1,12 @@
|
||||
@import "vendor/vendor";
|
||||
@import "layout/layout";
|
||||
@import "layout/layout";
|
||||
@import "utils/utils";
|
||||
|
||||
@font-face {
|
||||
font-family: "Mau";
|
||||
src: local('Mau'), url(../assets/fonts/OrientalCatsLight.otf) format('opentype');
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5 {
|
||||
font-family: "Mau", serif;
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
@import "mainlobby";
|
||||
15
src/styles/layout/pages/mainlobby.scss
Normal file
15
src/styles/layout/pages/mainlobby.scss
Normal file
@@ -0,0 +1,15 @@
|
||||
.main-lobby {
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
gap: 2rem;
|
||||
|
||||
&__button {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
}
|
||||
1
src/styles/utils/_utils.scss
Normal file
1
src/styles/utils/_utils.scss
Normal file
@@ -0,0 +1 @@
|
||||
@import "pointer";
|
||||
4
src/styles/utils/pointer.scss
Normal file
4
src/styles/utils/pointer.scss
Normal file
@@ -0,0 +1,4 @@
|
||||
.clickable {
|
||||
cursor: pointer;
|
||||
user-select: none;
|
||||
}
|
||||
Reference in New Issue
Block a user