From e185d9eb515c36290e4b555df31bddd0a5d31934 Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Sat, 18 Nov 2023 17:40:17 +0100 Subject: [PATCH] Created the main.sass --- client/src/common/styles/main.sass | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 client/src/common/styles/main.sass diff --git a/client/src/common/styles/main.sass b/client/src/common/styles/main.sass new file mode 100644 index 0000000..d5e6ca6 --- /dev/null +++ b/client/src/common/styles/main.sass @@ -0,0 +1,26 @@ +@import "colors" + +body, html + font-family: 'Inter', sans-serif + margin: 0 + padding: 0 + background-color: $background + color: $text + height: 100vh + + +.glassy + background-color: rgba(255, 255, 255, 0.14) + border: 2px solid rgba(255, 255, 255, 0.30) + backdrop-filter: blur(10px) + border-radius: 10px + +::-webkit-scrollbar + width: 13px + +::-webkit-scrollbar-thumb + background: darken($background, 10%) + border-radius: 10px + +::-webkit-scrollbar-thumb:hover + background: darken($background, 5%) \ No newline at end of file