product-detail.scss
442 Bytes
$primary-color : #08304b;
$sub-color : #64ad88;
@mixin cube-ufo-btn {
[type="button"] {
box-sizing: border-box;
padding: 0;
border-radius: 40px;
line-height: 80px;
font-size: 32px;
color: #333;
background: #fff;
border: 1px solid rgba(0, 0, 0, 0.12);
&:not(:last-child) {
margin-right: 24px;
}
&.active {
border: 0;
background: $primary-color;
color: #fff;
}
}
}