Files
MauMau-Client/src/styles/App.scss
DTieman 6ba1523853
Some checks failed
Build Mau & Deploy Mau / build (push) Successful in 1m48s
Build Mau & Deploy Mau / deploy (push) Has been cancelled
Build Mau & Deploy Mau / build (pull_request) Successful in 1m37s
Build Mau & Deploy Mau / deploy (pull_request) Failing after 2m3s
Updated front-end to match back-end and better styling
2024-05-19 23:50:47 +02:00

43 lines
790 B
SCSS

@import "vendor/vendor";
@import "layout/layout";
@import "utils/utils";
@font-face {
font-family: "Mau";
src: local('Mau'), url(../assets/fonts/OrientalCatsLight.otf) format('opentype');
}
* {
box-sizing: border-box;
}
body {
position: relative;
margin: 0;
overflow: hidden;
font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
height: 100dvh;
width: 100dvw;
background-color: #131313;
color: #ffffff;
}
#root, .app {
position: absolute;
height: 100%;
width: 100%;
}
.app {
padding: 1rem;
height: 100%;
width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin: 0;
}
.mau {
font-family: "Mau", serif;
}