From 94015330b39ae2c6dbcc30f9d9144386dddd3e69 Mon Sep 17 00:00:00 2001 From: Luis Felipe Zaguini Date: Thu, 14 Jul 2022 11:01:01 -0300 Subject: [PATCH] Update overflow-gradient to use transparent --- .../stylesheets/shared/functions/_overflow-gradient.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/assets/stylesheets/shared/functions/_overflow-gradient.scss b/client/assets/stylesheets/shared/functions/_overflow-gradient.scss index 9fcf816292f2e..53fbf18e06186 100644 --- a/client/assets/stylesheets/shared/functions/_overflow-gradient.scss +++ b/client/assets/stylesheets/shared/functions/_overflow-gradient.scss @@ -16,7 +16,7 @@ @function overflow-gradient( $color, $stop: 90%, $direction: to right ) { @return linear-gradient( $direction, - #{'rgba('} $color #{', 0 )'}, - #{'rgba('} $color #{', 1 )'} $stop + transparent, + $color $stop ); }