123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- .cl-row {
- position: relative;
- box-sizing: border-box;
- &::after,
- &::before {
- content: "";
- display: table;
- }
- &::after {
- clear: both;
- }
- &--flex {
- display: flex;
- &::after,
- &::before {
- display: none;
- }
- }
- &.is-justify-center {
- justify-content: center;
- }
- &.is-justify-end {
- justify-content: flex-end;
- }
- &.is-justify-space-between {
- justify-content: space-between;
- }
- &.is-justify-space-around {
- justify-content: space-around;
- }
- &.is-align-middle {
- align-items: center;
- }
- &.is-align-bottom {
- align-items: flex-end;
- }
- &.is-wrap {
- flex-wrap: wrap;
- }
- }
|