mirror of
https://github.com/fromchat-messenger/web.git
synced 2026-09-22 19:15:08 +03:00
25 lines
478 B
SCSS
25 lines
478 B
SCSS
@use "auth";
|
|
@use "chat";
|
|
@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";
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
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;
|
|
} |