Update CSS.

This commit is contained in:
Danila Fedorin 2019-02-25 19:58:05 -08:00
parent 5d519242be
commit 5f8751e142
1 changed files with 5 additions and 2 deletions

View File

@ -17,6 +17,8 @@ $inactive-input-border-color: darken($inactive-input-color, 10%);
$transition-duration: .125s; $transition-duration: .125s;
$inset-shadow: inset 0px 0px 5px rgba(0, 0, 0, .25);
html, body { html, body {
height: 100vh; height: 100vh;
} }
@ -78,6 +80,7 @@ h2, h3 {
} }
a.file-wrapper { a.file-wrapper {
padding: 5px 0px 5px 0px;
display: flex; display: flex;
align-items: center; align-items: center;
@ -188,7 +191,7 @@ div.room-wrapper {
display: flex; display: flex;
height: 100%; height: 100%;
flex-direction: column; flex-direction: column;
box-shadow: inset 0px 0px 10px rgba(0, 0, 0, .50); box-shadow: $inset-shadow;
padding: 5px; padding: 5px;
} }
@ -281,7 +284,7 @@ div.message {
padding: 10px; padding: 10px;
background-color: $background-color; background-color: $background-color;
border-radius: 3px; border-radius: 3px;
box-shadow: inset 0px 0px 5px rgba(0, 0, 0, .15); box-shadow: $inset-shadow;
} }
} }