github.com/Ilhicas/nomad@v1.0.4-0.20210304152020-e86851182bc3/ui/app/styles/components/toolbar.scss (about) 1 $spacing: 1.5em; 2 3 .toolbar { 4 display: flex; 5 margin-bottom: $spacing / 2; 6 justify-content: space-between; 7 flex-wrap: wrap; 8 margin-left: -$spacing / 4; 9 margin-right: -$spacing / 4; 10 11 &.collapse + .toolbar { 12 margin-top: -$spacing / 2; 13 } 14 15 .toolbar-item { 16 margin-bottom: $spacing / 2; 17 padding-left: $spacing / 4; 18 padding-right: $spacing / 4; 19 align-self: center; 20 flex-grow: 1; 21 22 &.is-minimum { 23 flex-grow: 0; 24 } 25 26 &.is-right-aligned { 27 flex-grow: 0; 28 margin-left: auto; 29 } 30 31 &.is-top-aligned { 32 align-self: auto; 33 } 34 35 &.is-mobile-full-width { 36 @include mobile { 37 flex-grow: 1; 38 margin-left: 0; 39 width: 100%; 40 } 41 } 42 } 43 }