woocommerce/plugins/woocommerce-blocks/packages/components/totals-wrapper/style.scss

43 lines
783 B
SCSS

.wc-block-components-totals-wrapper {
border-top: 1px solid $universal-border-light;
padding: $gap 0;
&.has-bottom-border {
&::after {
border-bottom-width: 1px;
}
}
// TotalWrappers like Discount and Fee are sometimes empty
// this prevents displaying the empty areas in Order Summary
&:empty {
padding: 0;
border-width: 0;
&::after {
content: none;
}
}
&.slot-wrapper {
padding: 0;
> * > * {
border-bottom: 1px solid $universal-border-light;
padding: $gap 0;
// removes the border bottom for the last slot inserted
&:last-child::after {
border-bottom-width: 0;
}
}
}
}
.wc-block-components-discounts-meta {
.wc-block-components-totals-wrapper {
&:first-child {
border-top: 1px solid $universal-border-light;
}
}
}