Skip to content

Commit

Permalink
fix(styles): update grid-gap to column-gap for inline dropdown (#9749)
Browse files Browse the repository at this point in the history
Co-authored-by: Taylor Jones <tay1orjones@users.noreply.github.com>
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
  • Loading branch information
3 people authored Sep 29, 2021
1 parent d4b4772 commit cc4ab97
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/components/src/components/dropdown/_dropdown.scss
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
.#{$prefix}--dropdown__wrapper--inline {
display: inline-grid;
align-items: center;
grid-gap: rem(24px);
grid-gap: 0 rem(24px);
grid-template: auto auto / auto min-content;

.#{$prefix}--label {
Expand Down
2 changes: 1 addition & 1 deletion packages/styles/scss/components/dropdown/_dropdown.scss
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
.#{$prefix}--dropdown__wrapper--inline {
display: inline-grid;
align-items: center;
grid-gap: rem(24px);
grid-gap: 0 rem(24px);
grid-template: auto auto / auto min-content;

.#{$prefix}--label {
Expand Down

0 comments on commit cc4ab97

Please sign in to comment.