You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

29 lines
416 B

.cl-column {
display: flex;
flex-direction: column;
position: relative;
&.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;
}
}