woocommerce-paypal-payments/modules/ppcp-settings/resources/css/components/screens/settings/_controls.scss

25 lines
568 B
SCSS
Raw Normal View History

2025-01-22 16:06:45 +01:00
.ppcp--static-value {
@include font(13, 26, 400);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
2025-01-27 13:55:31 +01:00
// Fix the checkbox layout (add gap between checkbox and label).
2025-01-27 13:55:31 +01:00
.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;
}
}