From a7446d9663f2057ffe177e5b90c1e6406c44814d Mon Sep 17 00:00:00 2001 From: Samuel Lorch Date: Fri, 31 Mar 2023 19:40:00 +0200 Subject: [PATCH] Add Disabled Styling --- client/src/global-styles/components.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/client/src/global-styles/components.css b/client/src/global-styles/components.css index 79e3784..230741f 100644 --- a/client/src/global-styles/components.css +++ b/client/src/global-styles/components.css @@ -71,6 +71,10 @@ button, .button { background-color: var(--cl-bg-hl); } +.button:disabled, button:disabled { + background-color: var(--cl-bg-hl); +} + input, textarea { background-color: var(--cl-bg-hl); border: 1px solid var(--cl-fg);