mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-08 21:52:55 +08:00
24 lines
403 B
SCSS
24 lines
403 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;
|
||
|
}
|
||
|
}
|