Skip to content

Commit 9e4691d

Browse files
committed
Use secondary color for a more gray-ish look
1 parent 096cb0d commit 9e4691d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/button-link/button-link.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const resolvedIsExternal = isExternal !== undefined ? isExternal : url?.startsWi
1616

1717
<a
1818
class={`font-bold text-lg px-4 py-4 bg-button rounded-[60px] inline-block leading-4 hover:bg-button-hover not-prose
19-
${secondary ? "bg-primary text-white hover:bg-primary-hover" : "text-text-inverted"}
19+
${secondary || disabled ? "bg-primary text-white hover:bg-primary-hover" : "text-text-inverted"}
2020
${secondary ? "text-text" : ""}
2121
${className || ""}
2222
${disabled ? "opacity-50 pointer-events-none" : ""}`}

0 commit comments

Comments
 (0)