mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-01 07:02:48 +08:00
78 lines
1.2 KiB
SCSS
78 lines
1.2 KiB
SCSS
.ppcp-r-settings-block__payment-methods {
|
|
&.ppcp-r-settings-block {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
flex-direction: row;
|
|
gap: 16px;
|
|
}
|
|
|
|
&__item {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
width: calc(100% / 3 - 32px / 3);
|
|
border: 1px solid $color-gray-300;
|
|
padding: 16px;
|
|
border-radius: 8px;
|
|
min-height: 200px;
|
|
|
|
@media screen and (max-width: 767px) {
|
|
width: calc(50% - 8px);
|
|
}
|
|
|
|
@media screen and (max-width: 480px) {
|
|
width: 100%;
|
|
}
|
|
|
|
&__inner {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100%;
|
|
}
|
|
|
|
&__title-wrapper {
|
|
display: flex;
|
|
align-items: center;
|
|
margin: 0 0 8px 0;
|
|
gap: 12px;
|
|
}
|
|
|
|
&__description {
|
|
p {
|
|
margin: 0;
|
|
color: $color-text-tertiary;
|
|
@include font(13, 20, 400);
|
|
}
|
|
|
|
margin: 0 0 12px 0;
|
|
}
|
|
|
|
&__title {
|
|
@include font(13, 20, 500);
|
|
color: $color-black;
|
|
display: block;
|
|
}
|
|
|
|
&__settings {
|
|
line-height: 0;
|
|
transition: 0.2s ease-out transform;
|
|
transform: rotate(0deg);
|
|
zoom: 1.005;
|
|
|
|
&:hover {
|
|
transform: rotate(45deg);
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
|
|
button.is-secondary {
|
|
@include small-button;
|
|
}
|
|
|
|
&__footer {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-top: auto;
|
|
}
|
|
}
|
|
}
|