[IMP][CSS] Fix color variable issue

This commit is contained in:
Elisabeth Dickinson
2022-12-29 09:20:11 +01:00
committed by Antoine Vandevenne (anv)
parent d01888d0be
commit 9b7ec0fa11
2 changed files with 12 additions and 12 deletions
@@ -30,7 +30,7 @@
// Backgrounds
// ------------------------------------------------------------------
@mixin o-gradient($deg: 99deg , $startColor: $o-violet, $endColor: #62495B, $startOffset: 10%, $endOffset: 90%){
@mixin o-gradient($deg: 99deg , $startColor: $secondary, $endColor: #62495B, $startOffset: 10%, $endOffset: 90%){
background: mix($startColor, $endColor);
background: -webkit-linear-gradient($deg, $startColor $startOffset, $endColor $endOffset);
background: -moz-linear-gradient($deg, $startColor $startOffset, $endColor $endOffset);