From 83df146716663a13c7d7d5a4cb5043bb8bd6b7ad Mon Sep 17 00:00:00 2001 From: Alejandro Gomez Date: Fri, 27 Jan 2023 11:22:35 +0100 Subject: [PATCH] light disabled button --- src/index.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/index.css b/src/index.css index d2b7da4d..3b953bcb 100644 --- a/src/index.css +++ b/src/index.css @@ -120,6 +120,15 @@ button { outline: none; } +button:disabled { + cursor: not-allowed; + color: var(--gray); +} +.light button:disabled { + color: var(--font-color); +} + + button:hover { background-color: var(--font-color); color: var(--bg-color);