0
0
Fork 0

Add styling for disabled buttons.

This commit is contained in:
Oliver-Akins 2020-08-15 01:31:02 -06:00
parent 3b6362fed1
commit f9a14ce3f0
2 changed files with 9 additions and 0 deletions

View file

@ -9,6 +9,13 @@ button {
outline: none;
}
button:hover { cursor: pointer; }
button[disabled] {
background-color: var(--button-disabled-background);
color: var(--button-disabled-text);
}
button[disabled]:hover {
cursor: default;
}
input[type=number] {