From 9ecd0605272604d1b82c40a6756ed14ea858a823 Mon Sep 17 00:00:00 2001 From: Jonas Sulzer Date: Fri, 26 Apr 2019 17:09:02 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=8C=20IMPROVE:=20use=20blue=20icon=20w?= =?UTF-8?q?ith=20full=20opacity=20to=20indicate=20boosted=20state?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jonas Sulzer --- css/style.scss | 2 +- src/components/TimelineEntry.vue | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/css/style.scss b/css/style.scss index caec9da1..09a84a17 100644 --- a/css/style.scss +++ b/css/style.scss @@ -3,5 +3,5 @@ @include icon-black-white('boost', 'social', 1); .icon-boosted { - @include icon-color('boost', 'social', $color-white, 1); + @include icon-color('boost', 'social', '#0082c9', 1); } diff --git a/src/components/TimelineEntry.vue b/src/components/TimelineEntry.vue index d3b8b2dd..8df11886 100644 --- a/src/components/TimelineEntry.vue +++ b/src/components/TimelineEntry.vue @@ -194,8 +194,7 @@ export default { } } .icon-boosted { - border-radius: var(--border-radius-pill); - background-color: #0082c9; + opacity: 1; } }