14 lines
181 B
SCSS
14 lines
181 B
SCSS
|
.columns {
|
||
|
.column {
|
||
|
&.is-centered {
|
||
|
align-self: center;
|
||
|
justify-self: center;
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
&.is-minimum {
|
||
|
flex-grow: 0;
|
||
|
}
|
||
|
}
|
||
|
}
|