18 lines
237 B
SCSS
18 lines
237 B
SCSS
.columns {
|
|
.column {
|
|
&.is-centered {
|
|
align-self: center;
|
|
justify-self: center;
|
|
text-align: center;
|
|
}
|
|
|
|
&.is-minimum {
|
|
flex-grow: 0;
|
|
}
|
|
}
|
|
|
|
&.is-bottom-aligned {
|
|
align-items: flex-end;
|
|
}
|
|
}
|