Files
web/frontend/src/css/style.scss
T
2025-08-23 16:04:20 +03:00

37 lines
617 B
SCSS

@use "auth";
@use "chat";
@use "prifole";
@use "panelchat";
@use "common/animations";
@use "common/components";
@use "common/colors" as *;
@use "common/material" as *;
@use "lib/fonts/montserrat";
@use "lib/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;
height: 100vh;
position: relative;
margin: 0;
}
mdui-dialog {
> *:first-child {
margin-block-start: 0;
}
> *:last-child {
margin-block-end: 0;
}
}