mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-01 07:02:48 +08:00
29 lines
502 B
SCSS
29 lines
502 B
SCSS
|
.ppcp-r-setting-value-rows {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
align-items: flex-start;
|
||
|
gap: 12px;
|
||
|
width: 100%;
|
||
|
}
|
||
|
|
||
|
.ppcp-r-setting-value-row {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
width: 100%;
|
||
|
|
||
|
.ppcp-r-setting-label {
|
||
|
@include font(11, 22, 600);
|
||
|
color: $color-gray-900;
|
||
|
display: block;
|
||
|
text-transform: uppercase;
|
||
|
}
|
||
|
|
||
|
.ppcp-r-setting-value {
|
||
|
@include font(13, 26, 400);
|
||
|
color: $color-text-tertiary;
|
||
|
white-space: nowrap;
|
||
|
overflow: hidden;
|
||
|
text-overflow: ellipsis;
|
||
|
}
|
||
|
}
|