Skip to content

Commit

Permalink
fix: join button responsive margin issue. closes #3118
Browse files Browse the repository at this point in the history
  • Loading branch information
saadeghi committed Oct 2, 2024
1 parent bf31790 commit 50520b4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/utilities/styled/join.css
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
.join.join-vertical > :where(*:not(:first-child)) {
@apply mx-0 -mt-px;
&:is(.btn){
@apply mt-[calc(var(--border-btn)*-1)]
@apply mt-[calc(var(--border-btn)*-1)];
}
}
.join.join-horizontal > :where(*:not(:first-child)) {
@apply my-0 -ms-px;
&:is(.btn){
@apply ms-[calc(var(--border-btn)*-1)];
@apply ms-[calc(var(--border-btn)*-1)] mt-0;
}
}

0 comments on commit 50520b4

Please sign in to comment.