From 7ea4f89522141ca197143ce06e32b9cccd40a3f4 Mon Sep 17 00:00:00 2001 From: Tyler-A Date: Tue, 7 Jul 2020 09:57:48 -0600 Subject: [PATCH] Make the cursor change on hover of buttons and dropdowns (finishes #2 ) --- style.css | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/style.css b/style.css index ac1fd4f..6e4a67c 100644 --- a/style.css +++ b/style.css @@ -49,10 +49,8 @@ select { font-family: var(--fonts); outline: none; } - -select:focus { - border-style: none; -} +select:hover { cursor: pointer; } +select:focus { border-style: none; } button { padding: 10px 20px; @@ -63,6 +61,7 @@ button { font-family: var(--fonts); outline: none; } +button:hover { cursor: pointer; } input[type=number] { background-color: var(--spotify-black);