Files
cdnPRO/pracowniatadam.pl/styles.scss
2025-10-24 10:08:19 +02:00

39 lines
624 B
SCSS

form.form-basket {
.cart-active__addtobasket {
&.cart-fixed {
> section {
position: fixed;
bottom: 90px;
left: 50%;
transform: translateX(-50%);
z-index: 10;
margin: 0;
padding: 10px 15px;
border-radius: 8px;
background: #fff;
border: 1px solid #d0d0d0;
animation: cart-fixed 0.3s ease-in-out;
}
}
> section {
.button_wrap {
span {
text-wrap-mode: nowrap;
}
}
}
}
@keyframes cart-fixed {
0% {
opacity: 0;
transform: translateX(-50%) translateY(80px);
}
100% {
opacity: 1;
transform: translateX(-50%) translateY(0);
}
}
}