mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-08-31 06:52:50 +08:00
29 lines
566 B
SCSS
29 lines
566 B
SCSS
.components-flex {
|
|
display: flex;
|
|
-webkit-box-align: stretch;
|
|
align-items: stretch;
|
|
-webkit-box-pack: center;
|
|
|
|
.components-h-stack {
|
|
flex-direction: row;
|
|
justify-content: flex-start;
|
|
gap: 32px;
|
|
}
|
|
|
|
.components-v-stack {
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
}
|
|
|
|
// Fix layout for checkboxes inside a flex-stack.
|
|
.components-checkbox-control > .components-base-control__field > .components-flex {
|
|
flex-direction: row;
|
|
gap: 12px;
|
|
}
|
|
}
|
|
|
|
.ppcp--horizontal {
|
|
flex-direction: row;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|