0
0
Fork 0

Add a hover colour for all buttons.

This commit is contained in:
Oliver-Akins 2020-08-23 01:28:39 -06:00
parent 24328f1a04
commit 1c8923f5fa
2 changed files with 5 additions and 1 deletions

View file

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

View file

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