open-nomad/ui/app/styles/core/columns.scss

36 lines
458 B
SCSS
Raw Normal View History

2017-09-19 14:47:10 +00:00
.columns {
.column {
&.is-centered {
align-self: center;
justify-self: center;
text-align: center;
}
&.is-minimum {
flex-grow: 0;
}
&.is-400 {
width: 400px;
max-width: 400px;
}
2017-09-19 14:47:10 +00:00
}
2020-05-09 00:30:02 +00:00
&.is-bottom-aligned {
align-items: flex-end;
}
2020-05-18 21:07:41 +00:00
&.is-max-half {
max-width: 50%;
}
&.is-centered {
margin-left: auto;
margin-right: auto;
}
&.is-flush {
margin-bottom: 0;
}
2017-09-19 14:47:10 +00:00
}