github.com/hernad/nomad@v1.6.112/ui/app/styles/core/columns.scss (about) 1 /** 2 * Copyright (c) HashiCorp, Inc. 3 * SPDX-License-Identifier: MPL-2.0 4 */ 5 6 .columns { 7 .column { 8 &.is-centered { 9 align-self: center; 10 justify-self: center; 11 text-align: center; 12 } 13 14 &.is-minimum { 15 flex-grow: 0; 16 } 17 18 &.is-400 { 19 width: 400px; 20 max-width: 400px; 21 } 22 } 23 24 &.is-bottom-aligned { 25 align-items: flex-end; 26 } 27 28 &.is-max-half { 29 max-width: 50%; 30 } 31 32 &.is-centered { 33 margin-left: auto; 34 margin-right: auto; 35 } 36 37 &.is-flush { 38 margin-bottom: 0; 39 } 40 }