Skip to content

Commit

Permalink
KAW-7713 fix column block issues and add one more variant
Browse files Browse the repository at this point in the history
  • Loading branch information
Lakshmishri committed Aug 6, 2024
1 parent 4b0f3f0 commit ed53f3d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions blocks/columns/columns.css
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
margin-right: auto;
}

.columns > div > .columns-img-col {
.columns > div > .columns-img-col:not(.columns.image-no-order > div > .columns-img-col) {
order: 0;
}

Expand Down Expand Up @@ -58,11 +58,11 @@
}

.columns.grid > div .col-wide {
flex-basis: 48%;
flex-basis: calc((100% / 2) - 15px);
}

.columns.grid > div .col-narrow {
flex-basis: 31%;
flex-basis: calc((100% / 3) - 20px);
}
}

Expand Down

0 comments on commit ed53f3d

Please sign in to comment.