From 0d86fa2daf7cc26fc312f55a38642af5c5d707c4 Mon Sep 17 00:00:00 2001 From: Deimos Date: Fri, 26 Jul 2019 12:50:44 -0600 Subject: [PATCH] Fix comment removal warning not using theme color --- tildes/scss/modules/_comment.scss | 1 - tildes/scss/themes/_theme_base.scss | 4 ++++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/tildes/scss/modules/_comment.scss b/tildes/scss/modules/_comment.scss index b88cb82..a7739b3 100644 --- a/tildes/scss/modules/_comment.scss +++ b/tildes/scss/modules/_comment.scss @@ -145,7 +145,6 @@ } .comment-removed-warning { - color: $warning-color; font-weight: bold; font-size: 0.6rem; } diff --git a/tildes/scss/themes/_theme_base.scss b/tildes/scss/themes/_theme_base.scss index e8cbe0f..c50a4f3 100644 --- a/tildes/scss/themes/_theme_base.scss +++ b/tildes/scss/themes/_theme_base.scss @@ -241,6 +241,10 @@ color: map-get($theme, "foreground-secondary"); } + .comment-removed-warning { + color: map-get($theme, "warning"); + } + .comment-votes { color: map-get($theme, "foreground-secondary"); }