From 9f1d0c263a2f0fcb72be2497e2ba3e5e1a37f497 Mon Sep 17 00:00:00 2001 From: Patricio Albizu Date: Thu, 15 Apr 2021 15:00:07 -0300 Subject: [PATCH] fix: hover over a selected table changed color --- projects/components/src/table/table.component.scss | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/projects/components/src/table/table.component.scss b/projects/components/src/table/table.component.scss index 7880febe5..ebbd469d0 100644 --- a/projects/components/src/table/table.component.scss +++ b/projects/components/src/table/table.component.scss @@ -49,9 +49,9 @@ border-top: 1px solid $blue-2; &.hovered-row { - background: $blue-2; - border-bottom: 1px solid $blue-5; - border-top: 1px solid $blue-5; + background: $gray-1; + border-bottom: 1px solid $gray-2; + border-top: 1px solid $gray-2; } }