Skip to content

Commit

Permalink
Fix columns align
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Naszalyi committed Dec 4, 2024
1 parent aec47e1 commit 4ee7868
Showing 1 changed file with 28 additions and 2 deletions.
30 changes: 28 additions & 2 deletions packages/styles/framework/src/grid/_columns.scss
Original file line number Diff line number Diff line change
Expand Up @@ -272,6 +272,18 @@ $gap: 4px,
&.is-narrow-tablet {
flex: none;
}

&.is-aligned-start {
align-self: start !important;
}

&.is-aligned-center {
align-self: center !important;
}

&.is-aligned-end {
align-self: end !important;
}
}

@include touch {
Expand Down Expand Up @@ -382,8 +394,22 @@ $gap: 4px,
}
}

.column.is-narrow {
flex: none;
.column {
&.is-narrow {
flex: none;
}

&.is-aligned-start {
align-self: start !important;
}

&.is-aligned-center {
align-self: center !important;
}

&.is-aligned-end {
align-self: end !important;
}
}
}

Expand Down

0 comments on commit 4ee7868

Please sign in to comment.