mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-05 08:59:14 +08:00
24 lines
568 B
SCSS
24 lines
568 B
SCSS
.ppcp--static-value {
|
|
@include font(13, 26, 400);
|
|
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
// Fix the checkbox layout (add gap between checkbox and label).
|
|
.components-checkbox-control > .components-base-control__field > .components-flex {
|
|
flex-direction: row;
|
|
gap: 12px;
|
|
}
|
|
|
|
// Fix layout for radio groups inside a horizontal flex-stack.
|
|
.components-flex.components-h-stack > .components-radio-control {
|
|
width: 100%;
|
|
|
|
.components-radio-control__group-wrapper {
|
|
justify-content: flex-start;
|
|
flex-direction: row;
|
|
gap: 12px;
|
|
}
|
|
}
|