From 36932baa89e1b60d437cd46f75851fb8e9f95ed9 Mon Sep 17 00:00:00 2001 From: Christian Cueni Date: Tue, 16 Nov 2021 10:50:43 +0100 Subject: [PATCH] Fix instrument colors --- .../src/components/instruments/FilterEntry.vue | 4 ++-- .../components/instruments/InstrumentEntry.vue | 16 ++++++++-------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/client/src/components/instruments/FilterEntry.vue b/client/src/components/instruments/FilterEntry.vue index 8f0a56e6..5044520e 100644 --- a/client/src/components/instruments/FilterEntry.vue +++ b/client/src/components/instruments/FilterEntry.vue @@ -124,11 +124,11 @@ } &--language-communication { - @include filter-block($color-accent-2-dark); + @include filter-block($color-accent-1-dark); } &--society { - @include filter-block($color-accent-1-dark); + @include filter-block($color-accent-2-dark); } &--interdisciplinary { diff --git a/client/src/components/instruments/InstrumentEntry.vue b/client/src/components/instruments/InstrumentEntry.vue index ea127195..2650816c 100644 --- a/client/src/components/instruments/InstrumentEntry.vue +++ b/client/src/components/instruments/InstrumentEntry.vue @@ -56,19 +56,19 @@ $root: &; &__language-communication { - background-color: $color-accent-2-light; - - #{$root}__category { - color: $color-accent-2-dark; - } - } - - &__society { background-color: $color-accent-1-light; #{$root}__category { color: $color-accent-1-dark; } + } + + &__society { + background-color: $color-accent-2-light; + + #{$root}__category { + color: $color-accent-2-dark; + } }