Skip to content

Commit

Permalink
Grid column with is-start/center/end-aligned
Browse files Browse the repository at this point in the history
  • Loading branch information
YamiOdymel committed Mar 3, 2023
1 parent 22a2919 commit a5f9fef
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/grid.css
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,22 @@
align-items: flex-end;
}

.ts-grid .column.is-start-aligned {
display: flex;
flex-direction: column;
align-items: flex-start;
}
.ts-grid .column.is-center-aligned {
display: flex;
flex-direction: column;
align-items: center;
}
.ts-grid .column.is-end-aligned {
display: flex;
flex-direction: column;
align-items: flex-end;
}

/**
* Ordering
*/
Expand Down

0 comments on commit a5f9fef

Please sign in to comment.