Replace "more" icon in header

This commit is contained in:
Evan Hahn 2021-02-09 19:57:49 -06:00 committed by Scott Nonnenberg
parent 4519aa4abf
commit e3f2b6b2de
2 changed files with 9 additions and 2 deletions

View file

@ -0,0 +1 @@
<svg height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="m12 18.996-10-9.932 1.057-1.064 8.943 8.883 8.943-8.883 1.057 1.064z"/></svg>

After

Width:  |  Height:  |  Size: 169 B

View file

@ -3069,10 +3069,16 @@ $timer-icons: '55', '50', '45', '40', '35', '30', '25', '20', '15', '10', '05',
}
@include light-theme {
@include color-svg('../images/icons/v2/more-horiz-24.svg', $color-gray-75);
@include color-svg(
'../images/icons/v2/chevron-down-24.svg',
$color-gray-75
);
}
@include dark-theme {
@include color-svg('../images/icons/v2/more-horiz-24.svg', $color-gray-15);
@include color-svg(
'../images/icons/v2/chevron-down-24.svg',
$color-gray-15
);
}
}