mirror of
https://github.com/fromchat-messenger/web.git
synced 2026-09-22 19:15:08 +03:00
36 lines
561 B
SCSS
36 lines
561 B
SCSS
@use "components";
|
|
@use "colors" as *;
|
|
@use "material" as *;
|
|
|
|
@use "fonts/montserrat";
|
|
@use "fonts/material-symbols";
|
|
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Montserrat', sans-serif;
|
|
background-color: $color-dark-surface;
|
|
color: $color-dark-on-surface;
|
|
line-height: 1.6;
|
|
|
|
#main-wrapper {
|
|
flex: 1;
|
|
position: relative;
|
|
min-height: 0;
|
|
}
|
|
}
|
|
|
|
body, #root {
|
|
height: 100vh;
|
|
position: relative;
|
|
margin: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
mdui-icon {
|
|
user-select: none;
|
|
} |