mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-08-30 05:00:51 +08:00
87 lines
1.3 KiB
SCSS
87 lines
1.3 KiB
SCSS
.ppcp-r-page-welcome {
|
|
.ppcp-r-welcome-features {
|
|
margin: 0 0 32px 0;
|
|
}
|
|
|
|
.ppcp-r-payment-method-icons {
|
|
margin: 0 0 32px 0;
|
|
}
|
|
|
|
.ppcp-r-button-activate-paypal {
|
|
display: block;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.ppcp-r-button__description {
|
|
text-align: center;
|
|
}
|
|
|
|
.components-base-control__field {
|
|
margin: 0 0 24px 0;
|
|
}
|
|
|
|
.client-id-error {
|
|
@include font(11, 16, 450);
|
|
margin: -16px 0 24px;
|
|
color: var(--color-error);
|
|
}
|
|
|
|
.onboarding-advanced-options {
|
|
margin-top: 24px;
|
|
margin-bottom: 48px;
|
|
max-width: 800px;
|
|
|
|
.ppcp--toggler .ppcp--title-wrapper {
|
|
justify-content: center;
|
|
}
|
|
}
|
|
}
|
|
|
|
.ppcp-r-welcome-features {
|
|
display: flex;
|
|
justify-content: center;
|
|
padding: 8px;
|
|
|
|
&__col {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 4px;
|
|
|
|
> span {
|
|
@include font(12, 16, 500);
|
|
text-transform: uppercase;
|
|
color: $color-gray-800;
|
|
}
|
|
|
|
> p {
|
|
margin: 0;
|
|
@include font(11, 16, 450);
|
|
color: $color-gray-700;
|
|
}
|
|
|
|
&:not(:last-child) {
|
|
padding-right: 18px;
|
|
border-right: 1px solid $color-gray-200;
|
|
margin-right: 18px;
|
|
}
|
|
}
|
|
|
|
@media screen and (max-width: 480px) {
|
|
flex-wrap: wrap;
|
|
row-gap: 8px;
|
|
|
|
&__col {
|
|
width: 100%;
|
|
text-align: center;
|
|
|
|
&:not(:last-child) {
|
|
border-bottom: 1px solid $color-gray-200;
|
|
border-right: 0;
|
|
padding-right: 0;
|
|
padding-bottom: 8px;
|
|
margin: 0;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|