From 04eed2d2f9dca06af7b371d0d5c35751d1d504d5 Mon Sep 17 00:00:00 2001 From: Mark Date: Sat, 11 May 2024 20:50:04 +0200 Subject: [PATCH] add small detail to group button --- src/components/Group/ButtonRow.jsx | 6 +++--- src/components/Group/group.scss | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/components/Group/ButtonRow.jsx b/src/components/Group/ButtonRow.jsx index 06f5081..36cc768 100644 --- a/src/components/Group/ButtonRow.jsx +++ b/src/components/Group/ButtonRow.jsx @@ -35,7 +35,7 @@ const ButtonRow = ({ > {lightsCapabilities.includes("xy") && ( @@ -45,7 +45,7 @@ const ButtonRow = ({ {lightsCapabilities.includes("ct") && ( @@ -64,7 +64,7 @@ const ButtonRow = ({ diff --git a/src/components/Group/group.scss b/src/components/Group/group.scss index 99dda0e..87429dd 100644 --- a/src/components/Group/group.scss +++ b/src/components/Group/group.scss @@ -69,7 +69,7 @@ .btn { text-align: center; - color: rgba(255, 255, 255, 0.6); + color: rgb(170, 170, 170); margin-right: 10px; margin-left: 10px; font-size: 20px; @@ -77,11 +77,11 @@ transition: color 0.1s ease; &.active { - color: rgba(4, 154, 255, 0.8); + color: rgb(255, 255, 255); } &:hover { - color: rgba(255, 255, 255, 0.9); + color: rgb(255, 255, 255); cursor: pointer; transition: color 0.2s ease; }