27 lines
552 B
SCSS
27 lines
552 B
SCSS
// Cart
|
|
.cart-button {
|
|
display: none;
|
|
position: relative;
|
|
|
|
@include bp (sm) {
|
|
display: flex;
|
|
margin-left: auto;
|
|
}
|
|
|
|
.quantity {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: -12px;
|
|
transform: translateY(-50%);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 22px;
|
|
height: 22px;
|
|
font-size: rem(11px);
|
|
font-weight: 600;
|
|
color: #fff;
|
|
background-color: $color-secondary;
|
|
border-radius: 100%;
|
|
}
|
|
} |