mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-01 07:02:48 +08:00
24 lines
429 B
SCSS
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;
|
|
}
|
|
}
|