github.com/Ilhicas/nomad@v1.0.4-0.20210304152020-e86851182bc3/ui/app/styles/components/two-step-button.scss (about) 1 .two-step-button { 2 display: inline-block; 3 vertical-align: middle; 4 position: relative; 5 font-size: $body-size; 6 line-height: 1; 7 8 &.has-inline-text { 9 display: inline-flex; 10 align-items: center; 11 12 button { 13 margin-left: 0.5ch; 14 } 15 16 .confirmation-text { 17 position: static; 18 margin-right: 0.5ch; 19 } 20 } 21 22 .confirmation-text { 23 position: absolute; 24 left: 0; 25 top: -1.5em; 26 font-size: $body-size; 27 line-height: 1; 28 font-weight: $weight-normal; 29 color: darken($grey-blue, 20%); 30 white-space: nowrap; 31 32 &.is-right-aligned { 33 left: auto; 34 right: 0; 35 } 36 37 &.inherit-color { 38 color: currentColor; 39 } 40 } 41 }