woocommerce-paypal-payments/modules/ppcp-settings/resources/css/components/reusable-components/_stack.scss
2025-01-28 10:48:26 +01:00

24 lines
429 B
SCSS

.ppcp-r-app {
.components-flex {
display: flex;
-webkit-box-align: stretch;
align-items: stretch;
-webkit-box-pack: center;
}
.components-flex.components-h-stack,
.ppcp--horizontal {
flex-direction: row;
align-items: center;
}
.ppcp--horizontal {
justify-content: space-between;
}
.components-flex.components-v-stack {
flex-direction: column;
justify-content: center;
align-items: flex-start;
}
}