From 41acb75b8104629a8060c43f80d2e97df413280b Mon Sep 17 00:00:00 2001 From: = Date: Fri, 18 Oct 2019 05:31:13 -0700 Subject: [PATCH] Fix problems with button color --- app/public/main.css | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/app/public/main.css b/app/public/main.css index ca398fa..a5f6c05 100644 --- a/app/public/main.css +++ b/app/public/main.css @@ -73,8 +73,13 @@ body { padding: 5px 5px 5px 10px; } -.btn-floating:hover, -btn:hover { +.btn:hover { + background-color: white; + color: #02adba; + border: 1px solid rgb(0, 173, 187); +} + +.btn-floating:hover { background-color: #02adba; border: 1px solid rgb(0, 173, 187); }