From e3f2b6b2dece03609eaeac49e7d93b58f1bd1024 Mon Sep 17 00:00:00 2001 From: Evan Hahn <69474926+EvanHahn-Signal@users.noreply.github.com> Date: Tue, 9 Feb 2021 19:57:49 -0600 Subject: [PATCH] Replace "more" icon in header --- images/icons/v2/chevron-down-24.svg | 1 + stylesheets/_modules.scss | 10 ++++++++-- 2 files changed, 9 insertions(+), 2 deletions(-) create mode 100644 images/icons/v2/chevron-down-24.svg diff --git a/images/icons/v2/chevron-down-24.svg b/images/icons/v2/chevron-down-24.svg new file mode 100644 index 000000000000..02a998357b6c --- /dev/null +++ b/images/icons/v2/chevron-down-24.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/stylesheets/_modules.scss b/stylesheets/_modules.scss index 49ff445e0e34..3081e93405c9 100644 --- a/stylesheets/_modules.scss +++ b/stylesheets/_modules.scss @@ -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 + ); } }