light disabled button

This commit is contained in:
Alejandro Gomez 2023-01-27 11:22:35 +01:00
parent 661f2936e6
commit 83df146716
No known key found for this signature in database
GPG Key ID: 4DF39E566658C817

View File

@ -120,6 +120,15 @@ button {
outline: none; outline: none;
} }
button:disabled {
cursor: not-allowed;
color: var(--gray);
}
.light button:disabled {
color: var(--font-color);
}
button:hover { button:hover {
background-color: var(--font-color); background-color: var(--font-color);
color: var(--bg-color); color: var(--bg-color);