25 lines
446 B
SCSS
25 lines
446 B
SCSS
.wc-block-components-totals-item {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
padding: em($gap-small) 0;
|
|
width: 100%;
|
|
|
|
&:not(:first-of-type):not(:last-of-type) {
|
|
@include with-translucent-border(1px 0 0);
|
|
}
|
|
}
|
|
|
|
.wc-block-components-totals-item__label {
|
|
flex-grow: 1;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.wc-block-components-totals-item__value {
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.wc-block-components-totals-item__description {
|
|
@include font-size(small);
|
|
width: 100%;
|
|
}
|