Skip to content

Commit

Permalink
🐛 fix split even
Browse files Browse the repository at this point in the history
  • Loading branch information
ebullient committed Dec 24, 2024
1 parent 6a821b4 commit 030ee15
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/scss/layout/_split.scss
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,15 @@ split[no-margin]>* {
}
}

split[even]:not([wrap])>* {
split[even]:not([wrap]) {
display: flex;
flex-flow: row wrap;
align-content: center;
gap: var(--split-gap-size);
grid-gap: unset;
}
split[wrap]:not([even]) {
display: grid;
gap: unset;
grid-gap: var(--split-gap-size);

>* {
margin: auto;
}
Expand Down

0 comments on commit 030ee15

Please sign in to comment.