From 947340953b3da93e21486da39a58361580f2aa63 Mon Sep 17 00:00:00 2001 From: The-Best-Codes Date: Fri, 18 Apr 2025 12:08:46 -0500 Subject: [PATCH 1/3] fix button icon color --- components/button-link/button-link.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/components/button-link/button-link.scss b/components/button-link/button-link.scss index 93531256..690c986e 100644 --- a/components/button-link/button-link.scss +++ b/components/button-link/button-link.scss @@ -18,6 +18,7 @@ svg path { transition: fill 0.2s ease; + fill: $white; } &:hover svg path { From cce44f077787cadc197c5ce68b5cb7f82252210e Mon Sep 17 00:00:00 2001 From: The-Best-Codes Date: Fri, 18 Apr 2025 12:13:44 -0500 Subject: [PATCH 2/3] fix: classname was not applied to button link --- components/button-link/ButtonLink.jsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/components/button-link/ButtonLink.jsx b/components/button-link/ButtonLink.jsx index 9d4e8715..b9b17ec6 100644 --- a/components/button-link/ButtonLink.jsx +++ b/components/button-link/ButtonLink.jsx @@ -1,13 +1,14 @@ import Link from 'next/link' import IconArrowRight from '../../public/icons/arrow-right' +import clsx from 'clsx' -const ButtonLink = ({ href, isExternal, children }) => { +const ButtonLink = ({ href, isExternal, children, className }) => { return ( {children} From a6dfca8f618dfe4b41800366f4763d184bfa2bbb Mon Sep 17 00:00:00 2001 From: The-Best-Codes Date: Fri, 18 Apr 2025 12:14:27 -0500 Subject: [PATCH 3/3] fix: add margin to events list add button --- components/button-link/button-link.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/components/button-link/button-link.scss b/components/button-link/button-link.scss index 690c986e..89277513 100644 --- a/components/button-link/button-link.scss +++ b/components/button-link/button-link.scss @@ -30,6 +30,7 @@ background: $white; color: $purple; font-weight: 600; + margin-top: spacing(1); svg path { fill: $purple;