mirror of
https://github.com/fromchat-messenger/web.git
synced 2026-09-22 19:15:08 +03:00
37 lines
617 B
SCSS
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;
|
|
}
|
|
} |