1
0
forked from noxious/client

character selection work

This commit is contained in:
2024-05-31 23:02:44 +02:00
parent 2db7fc9905
commit 1febe56a50
11 changed files with 302 additions and 181 deletions

26
src/assets/scss/main.scss Normal file
View File

@ -0,0 +1,26 @@
@import "@/assets/scss/_variables";
// Fonts
@font-face {
font-family: GentiumPlus;
src: url('@/assets/fonts/Gentium_plus.ttf');
}
body {
-ms-overflow-style: none;
scrollbar-width: none;
background: $black;
// Disable selection, might wanna comment when debugging
-webkit-user-select: none; /* Safari */
-ms-user-select: none; /* IE 10 and IE 11 */
user-select: none; /* Standard syntax */
}
h1, h2, h3, h4, h5, h6 {
font-family: GentiumPlus, serif;
}
::-webkit-scrollbar {
display: none;
}