From 29fe9b40b68e6ac430c5a57c1ac545e3c82bb795 Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Mon, 20 Sep 2021 22:50:47 -0500 Subject: [PATCH] Icon css: increase specificity --- app/styles/components/icon.scss | 8 ++++---- app/styles/navigation.scss | 4 ---- 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/app/styles/components/icon.scss b/app/styles/components/icon.scss index 9aeb7f310..1c3e07400 100644 --- a/app/styles/components/icon.scss +++ b/app/styles/components/icon.scss @@ -12,18 +12,18 @@ } &--active { - .icon-tabler-search { + svg.icon-tabler-search { stroke-width: 2px; } - .icon-tabler-bell, - .icon-tabler-messages { + svg.icon-tabler-bell, + svg.icon-tabler-messages { path:nth-child(2) { fill: var(--primary-text-color); } } - .icon-tabler-users { + svg.icon-tabler-users { circle, circle + path { fill: var(--primary-text-color); diff --git a/app/styles/navigation.scss b/app/styles/navigation.scss index 0706dabfa..2d6921ff4 100644 --- a/app/styles/navigation.scss +++ b/app/styles/navigation.scss @@ -126,8 +126,4 @@ justify-self: center; font-weight: bold; } - - @media screen and (min-width: 895px) { - display: none; - } }