woocommerce-paypal-payments/modules/ppcp-settings/resources/css/components/reusable-components/_button.scss
2024-11-08 13:03:39 +04:00

46 lines
727 B
SCSS

button.components-button, a.components-button {
&.is-primary, &.is-secondary {
&:not(:disabled) {
background-color: $color-black;
}
&:disabled {
background-color: $color-gray-500;
color: $color-white;
}
border-radius: 2px;
padding: 14px 17px;
height: auto;
}
&.is-primary {
@include font(13, 20, 400);
color:$color-white;
}
&.is-secondary:not(:disabled) {
border-color:$color-blueberry;
background-color:$color-white;
color:$color-blueberry;
&:hover{
background-color:$color-white;
background:none;
}
}
&.is-tertiary {
color: $color-blueberry;
&:hover {
color: $color-gradient-dark;
}
&:focus:not(:disabled) {
border: none;
box-shadow: none;
}
}
}