From 4ffb9ad9e94d3a44fec3cb55c6e4865ee9cbb527 Mon Sep 17 00:00:00 2001
From: weru <onewesh@gmail.com>
Date: Fri, 29 May 2020 08:16:16 +0000
Subject: [PATCH] edit helpers

---
 assets/sass/_variables.sass |   19 +++++++++++++++----
 1 files changed, 15 insertions(+), 4 deletions(-)

diff --git a/assets/sass/_variables.sass b/assets/sass/_variables.sass
index f97fe94..d4f94f2 100644
--- a/assets/sass/_variables.sass
+++ b/assets/sass/_variables.sass
@@ -10,15 +10,26 @@
   --text: var(--dark)
   --theme: #20c997
   --font: 'Metropolis', sans-serif
+  --border-color: #eee
+  &::after
+    content: ""
+    height: 15vh
+    position: fixed
+    bottom: 0
+    width: 100vw
+    z-index: 9999
+    background: linear-gradient(to top, var(--bg), transparent)
 
-@media (prefers-color-scheme: dark)
-  html 
-    *
-      box-shadow: none !important 
+  @media (prefers-color-scheme: dark)
     --bg: var(--dark)
     --text: var(--light)
     --accent: var(--bubble)
     --overlay: var(--bubble)
+    --border-color: transparent
+    *
+      box-shadow: none !important 
+    &::after
+      background: linear-gradient(to top, var(--bg), transparent)
 
 %narrow 
   max-width: 750px

--
Gitblit v1.10.0