_progress-group.scss
1 .progress-group { 2 display: flex; 3 flex-flow: row wrap; 4 margin-bottom: $spacer; 5 } 6 7 .progress-group-prepend { 8 flex: 0 0 100px; 9 align-self: center; 10 } 11 12 .progress-group-icon { 13 margin: 0 $spacer 0 ($spacer * .25); 14 font-size: $font-size-lg; 15 } 16 17 .progress-group-text { 18 font-size: $font-size-sm; 19 color: $gray-600; 20 } 21 22 .progress-group-header { 23 display: flex; 24 flex-basis: 100%; 25 align-items: flex-end; 26 margin-bottom: ($spacer * .25); 27 } 28 29 .progress-group-bars { 30 flex-grow: 1; 31 align-self: center; 32 33 .progress:not(:last-child) { 34 margin-bottom: 2px; 35 } 36 } 37 38 .progress-group-header + .progress-group-bars { 39 flex-basis: 100%; 40 }