From 5f8751e14223a9a26d3d92a39681d83beca3e113 Mon Sep 17 00:00:00 2001 From: Danila Fedorin Date: Mon, 25 Feb 2019 19:58:05 -0800 Subject: [PATCH] Update CSS. --- static/scss/style.scss | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/static/scss/style.scss b/static/scss/style.scss index 3735f38..bd8cb40 100644 --- a/static/scss/style.scss +++ b/static/scss/style.scss @@ -17,6 +17,8 @@ $inactive-input-border-color: darken($inactive-input-color, 10%); $transition-duration: .125s; +$inset-shadow: inset 0px 0px 5px rgba(0, 0, 0, .25); + html, body { height: 100vh; } @@ -78,6 +80,7 @@ h2, h3 { } a.file-wrapper { + padding: 5px 0px 5px 0px; display: flex; align-items: center; @@ -188,7 +191,7 @@ div.room-wrapper { display: flex; height: 100%; flex-direction: column; - box-shadow: inset 0px 0px 10px rgba(0, 0, 0, .50); + box-shadow: $inset-shadow; padding: 5px; } @@ -281,7 +284,7 @@ div.message { padding: 10px; background-color: $background-color; border-radius: 3px; - box-shadow: inset 0px 0px 5px rgba(0, 0, 0, .15); + box-shadow: $inset-shadow; } }