Skip to content

Commit

Permalink
fix(FilterMultiSelect): correct RemovableFilterTrigger border-radius …
Browse files Browse the repository at this point in the history
…shorthand (#3782)

* fix(FilterMultiSelect): correct RemovableFIlterTrigger border-radius shorthand

Previous update to style lint (431a020) I assume forced us to use shorthand
instead of individual corner radius rules. The new shorthand was
incorrectly setting which corners should receive the border radius.

* update changeset

---------

Co-authored-by: Brendan Timmons <brendan.timmons@cultureamp.com>
Co-authored-by: Geoffrey Chong <gyfchong@users.noreply.github.com>
  • Loading branch information
3 people authored Jun 21, 2023
1 parent 3c2c7ed commit d3968f5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .changeset/thin-keys-end.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@kaizen/select": patch
---

fix border radius when using RemovableFilterTrigger
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@
display: inline-flex;

.triggerButton {
border-radius: 0 $border-solid-border-radius;
border-radius: $border-solid-border-radius 0 0 $border-solid-border-radius;
}

.removeButton {
@include button;

width: $spacing-xl;
justify-content: center;
border-radius: $border-solid-border-radius 0;
border-radius: 0 $border-solid-border-radius $border-solid-border-radius 0;
}

.divider {
Expand Down

0 comments on commit d3968f5

Please sign in to comment.