Skip to content

Commit 8acd0b8

Browse files
committed
fix: update Button component to correct background color for primary variant
1 parent 8310b13 commit 8acd0b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/ui/Button.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,6 @@ const buttonClasses = computed(() => {
3333
}
3434
3535
// Primary variant (default)
36-
return `${baseClasses} border-none bg-primary! text-[#1e1e1e]! focus:shadow-[0_0_0_2px_rgba(252,209,90,0.3)]`;
36+
return `${baseClasses} border-none bg-[#fcd15a]! text-[#1e1e1e]! focus:shadow-[0_0_0_2px_rgba(252,209,90,0.3)]`;
3737
});
3838
</script>

0 commit comments

Comments
 (0)