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
1 changed files with 9 additions and 0 deletions

View File

@ -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);