From 79c48434bc5b5ec9c7278c8bdfbbff44b63461eb Mon Sep 17 00:00:00 2001 From: Dinesh Salunke <dineshsalunke@consultbop.com> Date: Tue, 5 Dec 2023 16:40:26 +0530 Subject: [PATCH] refactor: update the styling of the buttons --- templates/checkout/_partials/cart-detailed-actions.tpl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/templates/checkout/_partials/cart-detailed-actions.tpl b/templates/checkout/_partials/cart-detailed-actions.tpl index a094df1..5b17e4b 100644 --- a/templates/checkout/_partials/cart-detailed-actions.tpl +++ b/templates/checkout/_partials/cart-detailed-actions.tpl @@ -29,15 +29,15 @@ {$cart.minimalPurchaseRequired} </div> <div class="text-sm-center"> - <button type="button" class="flex-1 uppercase py-2 font-medium text-center bg-blue-900 text-gray-50" disabled>{l s='Proceed to checkout' d='Shop.Theme.Actions'}</button> + <button type="button" class="flex-1 uppercase py-2 font-medium text-center bg-blue-950 text-gray-50 hover:text-gray-50 hover:bg-blue-900" disabled>{l s='Proceed to checkout' d='Shop.Theme.Actions'}</button> </div> {elseif empty($cart.products) } <div class="text-sm-center"> - <button type="button" class="flex-1 uppercase py-2 font-medium text-center bg-blue-900 text-gray-50" disabled>{l s='Proceed to checkout' d='Shop.Theme.Actions'}</button> + <button type="button" class="flex-1 uppercase py-2 font-medium text-center bg-blue-950 text-gray-50 hover:text-gray-50 hover:bg-blue-900" disabled>{l s='Proceed to checkout' d='Shop.Theme.Actions'}</button> </div> {else} <div class="flex"> - <a href="{$urls.pages.order}" class="flex-1 uppercase py-2 font-medium text-center bg-blue-900 text-gray-50">{l s='Proceed to checkout' d='Shop.Theme.Actions'}</a> + <a href="{$urls.pages.order}" class="flex-1 uppercase py-2 font-medium text-center bg-blue-950 text-gray-50 hover:text-gray-50 hover:bg-blue-900">{l s='Proceed to checkout' d='Shop.Theme.Actions'}</a> {hook h='displayExpressCheckout'} </div> {/if}