From b63d597846093455e5308bd50ad83173467e6955 Mon Sep 17 00:00:00 2001 From: Eric Date: Fri, 17 Apr 2026 12:15:32 -0500 Subject: [PATCH] Website: update cta-button mixin hover state (#43717) Changes: - Added hover styles to the cta-button mixin. ## Summary by CodeRabbit * **Style** * Call-to-action buttons now display white text without underline on hover. --- website/assets/styles/mixins-and-variables/buttons.less | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/website/assets/styles/mixins-and-variables/buttons.less b/website/assets/styles/mixins-and-variables/buttons.less index ea92a64f3e..d9088df9d4 100644 --- a/website/assets/styles/mixins-and-variables/buttons.less +++ b/website/assets/styles/mixins-and-variables/buttons.less @@ -98,6 +98,10 @@ align-items: center; font-weight: 700; border-radius: 8px; + &:hover { + color: #FFF; + text-decoration: none; + } &:before { background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%); opacity: 1;