From c73d566c25dfc40b699aae0d21bc593eb8024dcb Mon Sep 17 00:00:00 2001 From: Oliver Date: Tue, 29 Jul 2025 12:04:48 -0300 Subject: [PATCH] css --- public/widget/custom/brandize.css | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/public/widget/custom/brandize.css b/public/widget/custom/brandize.css index d03124f..8cba45b 100644 --- a/public/widget/custom/brandize.css +++ b/public/widget/custom/brandize.css @@ -162,25 +162,27 @@ .button { display: inline-block; padding: 12px 24px; - background-color: #4CAF50; /* Green */ - color: white; + background-color: transparent; + color: inherit; text-align: center; text-decoration: none; - border-radius: 8px; + border-radius: 0px; font-size: 16px; font-weight: bold; transition: background-color 0.3s ease, box-shadow 0.3s ease; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); + position: absolute; + right: 0; + top: 50%; + transform: translateY(-50%) } .button:hover { - background-color: #45a049; - box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15); + opacity: 0.8; } .button:active { - background-color: #3e8e41; - box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); + opacity: 0.6; }