From 74cd2956704b3a105049595cad061407be7b28c3 Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Sun, 13 Aug 2023 18:06:16 +0200 Subject: [PATCH] Added the Button disabled css --- client/src/common/components/Button/styles.sass | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/client/src/common/components/Button/styles.sass b/client/src/common/components/Button/styles.sass index b3cc63a..e1ef629 100644 --- a/client/src/common/components/Button/styles.sass +++ b/client/src/common/components/Button/styles.sass @@ -17,4 +17,8 @@ cursor: pointer &:hover - filter: brightness(1.2) \ No newline at end of file + filter: brightness(1.2) + + &:disabled + opacity: 0.5 + cursor: not-allowed \ No newline at end of file