open-nomad/ui/app/styles/core/columns.scss
2023-04-10 15:36:59 +00:00

41 lines
536 B
SCSS

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
.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;
}
}
&.is-bottom-aligned {
align-items: flex-end;
}
&.is-max-half {
max-width: 50%;
}
&.is-centered {
margin-left: auto;
margin-right: auto;
}
&.is-flush {
margin-bottom: 0;
}
}