Add a hover colour for all buttons.
This commit is contained in:
parent
24328f1a04
commit
1c8923f5fa
2 changed files with 5 additions and 1 deletions
|
|
@ -8,7 +8,10 @@ button {
|
|||
font-size: larger;
|
||||
outline: none;
|
||||
}
|
||||
button:hover { cursor: pointer; }
|
||||
button:hover {
|
||||
background-color: var(--button-hover-background);
|
||||
cursor: pointer;
|
||||
}
|
||||
button[disabled] {
|
||||
background-color: var(--button-disabled-background);
|
||||
color: var(--button-disabled-text);
|
||||
|
|
|
|||
|
|
@ -38,6 +38,7 @@
|
|||
--input-text: var(--spotify-green);
|
||||
--input-active-border: var(--accent2);
|
||||
|
||||
--button-hover-background: var(--accent2);
|
||||
--button-background: var(--spotify-green);
|
||||
--button-disabled-background: #09682a;
|
||||
--button-text: var(--spotify-black);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue