github.com/anth0d/nomad@v0.0.0-20221214183521-ae3a0a2cad06/ui/app/styles/core/columns.scss (about) 1 .columns { 2 .column { 3 &.is-centered { 4 align-self: center; 5 justify-self: center; 6 text-align: center; 7 } 8 9 &.is-minimum { 10 flex-grow: 0; 11 } 12 13 &.is-400 { 14 width: 400px; 15 max-width: 400px; 16 } 17 } 18 19 &.is-bottom-aligned { 20 align-items: flex-end; 21 } 22 23 &.is-max-half { 24 max-width: 50%; 25 } 26 27 &.is-centered { 28 margin-left: auto; 29 margin-right: auto; 30 } 31 32 &.is-flush { 33 margin-bottom: 0; 34 } 35 }