1
0
web-semprace/sass/general.scss
2023-11-18 22:32:40 +01:00

26 lines
345 B
SCSS

* {
box-sizing: border-box;
padding: 0;
margin: 0;
font-family: "Kanit", sans-serif;
}
body {
background: var(--clr-grey-400);
}
.flex-col {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.flex-row {
display: flex;
justify-content: center;
align-items: center;
flex-direction: row;
}