fix color on buttons
Some checks failed
CI / test-and-build (push) Has been cancelled

This commit is contained in:
2026-03-24 11:32:51 +01:00
parent e47dcf5983
commit c8caacf1e2

View File

@@ -11,7 +11,7 @@
<script setup lang="ts">
defineProps<{
variant?: "primary" | "outline" | "ghost" | "danger";
variant?: 'primary' | 'outline' | 'ghost' | 'danger';
disabled?: boolean;
}>();
</script>
@@ -21,7 +21,7 @@ defineProps<{
.btn {
@apply h-10 text-sm;
padding: 0 1.5rem;
font-family: "Barlow", sans-serif;
font-family: 'Barlow', sans-serif;
font-weight: 700;
letter-spacing: 0.06em;
text-transform: uppercase;
@@ -37,7 +37,7 @@ defineProps<{
}
.btn--primary {
background: var(--color-primary);
color: var(--color-secondary-dark);
color: var(--color-black);
}
.btn--primary:hover {
background: var(--color-primary-light);