github.com/iqoqo/nomad@v0.11.3-0.20200911112621-d7021c74d101/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 .toolbar-item { 12 margin-bottom: $spacing / 2; 13 padding-left: $spacing / 4; 14 padding-right: $spacing / 4; 15 align-self: center; 16 flex-grow: 1; 17 18 &.is-minimum { 19 flex-grow: 0; 20 } 21 22 &.is-right-aligned { 23 flex-grow: 0; 24 margin-left: auto; 25 } 26 27 &.is-top-aligned { 28 align-self: auto; 29 } 30 31 &.is-mobile-full-width { 32 @include mobile { 33 flex-grow: 1; 34 margin-left: 0; 35 width: 100%; 36 } 37 } 38 } 39 }