mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-04 08:47:23 +08:00
23 lines
373 B
SCSS
23 lines
373 B
SCSS
|
button.components-button {
|
||
|
&.is-primary, &.is-secondary {
|
||
|
background-color: $color-blueberry;
|
||
|
border-radius: 2px;
|
||
|
padding: 14px 17px;
|
||
|
height: auto;
|
||
|
&:hover {
|
||
|
background: $gradient-header;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
&.is-primary {
|
||
|
@include font(13, 16, 500);
|
||
|
}
|
||
|
|
||
|
&.is-secondary {
|
||
|
padding: 6px 12px;
|
||
|
@include font(13, 20, 500);
|
||
|
color: $color-white;
|
||
|
border: none;
|
||
|
}
|
||
|
}
|