Skip to content

Commit

Permalink
update value for outline button outline (#965)
Browse files Browse the repository at this point in the history
Fix on % for outline calculation so it's closer to Figma
  • Loading branch information
aguscruiz authored Jan 21, 2025
1 parent 8a19b3c commit 3fad79b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/button/button.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -345,12 +345,12 @@
--border-color: color-mix(
in srgb,
var(--primary-color),
var(--background) 70%
var(--background) 30%
);
--border-color-hover: color-mix(
in srgb,
var(--mixed-primary-color),
var(--background) 70%
var(--background) 20%
);
}
}
Expand Down

0 comments on commit 3fad79b

Please sign in to comment.