Fix login

This commit is contained in:
N-Pex 2020-11-09 15:55:17 +01:00
parent d6381f60c7
commit 1b3659b50e
6 changed files with 37 additions and 22 deletions

View file

@ -1,4 +1,6 @@
$chat-background: #008860;
@import "@/assets/css/main.scss";
$chat-background: $background;
$chat-standard-padding: 32px;
$chat-standard-padding-s: 16px;
$chat-standard-padding-xs: 8px;

14
src/assets/css/login.scss Normal file
View file

@ -0,0 +1,14 @@
@import "@/assets/css/main.scss";
.login-root {
position: absolute;
left: 0px;
top: 0px;
right: 0px;
bottom: 0px;
width: 100%;
height: 100%;
padding: 0;
margin: 0;
background-color: $background;
}

1
src/assets/css/main.scss Normal file
View file

@ -0,0 +1 @@
$background: #008860;