From 29c7a7594289d28f2530a0eefef7d6038d01f6c1 Mon Sep 17 00:00:00 2001
From: Michael Drury <mpdrury15@gmail.com>
Date: Wed, 10 May 2023 14:25:23 +0100
Subject: [PATCH] checkout button orange on hover

---
 shop/static/styles.css | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/shop/static/styles.css b/shop/static/styles.css
index e7595a9..ac520b2 100644
--- a/shop/static/styles.css
+++ b/shop/static/styles.css
@@ -345,17 +345,20 @@ li {
 .checkout_button {
     border: 2px solid grey;
     width: 80px;
-    height: 45px;
+    height: 55px;
     margin: auto;
     text-align: center;
     border-radius: 15px;
     background: #E8E8E8;
+    color: black;
 }
 
-.checkout_button_text {
-    color: black;
+
+.checkout_button:hover {
+    color: orange;
 }
 
+
 .checkout_price {
     padding-left: 20px;
     font-size: 100%;
-- 
GitLab