From 91a4751cb390de2fc13d37f67b29b7a274e679d8 Mon Sep 17 00:00:00 2001 From: Carl Kittelberger Date: Mon, 16 Jul 2018 01:26:25 +0200 Subject: [PATCH] Change gradient to go from bottom to top. --- src/header/meta/_overlay.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/header/meta/_overlay.scss b/src/header/meta/_overlay.scss index 999ed2e..f961432 100644 --- a/src/header/meta/_overlay.scss +++ b/src/header/meta/_overlay.scss @@ -11,7 +11,7 @@ z-index: 900; // copied from https://gist.github.com/Odepia/5790397 background: transparent; - background: linear-gradient(to right, $icedream-metadata-overlay-background-gradient-from 0%, $icedream-metadata-overlay-background-gradient-to 100%); + background: linear-gradient(to top, $icedream-metadata-overlay-background-gradient-from 0%, $icedream-metadata-overlay-background-gradient-to 100%); filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#{$icedream-metadata-overlay-background-gradient-from}, endColorstr=#{$icedream-metadata-overlay-background-gradient-to}); }