2021-09-17 15:29:58 +00:00
|
|
|
.wc-block-cart__submit {
|
|
|
|
position: relative;
|
2021-10-19 11:23:33 +00:00
|
|
|
margin: 0 0 $gap 0;
|
2021-09-17 15:29:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.wc-block-cart__submit-button {
|
|
|
|
width: 100%;
|
2021-10-19 11:23:33 +00:00
|
|
|
margin: 0;
|
2022-04-12 15:13:43 +00:00
|
|
|
box-sizing: border-box;
|
2021-09-17 15:29:58 +00:00
|
|
|
}
|
|
|
|
|
2021-10-19 11:23:33 +00:00
|
|
|
.wc-block-cart {
|
|
|
|
.wc-block-cart__submit-container {
|
|
|
|
padding: 0;
|
2021-09-17 15:29:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-11 13:18:32 +00:00
|
|
|
@include breakpoint(">782px") {
|
2021-10-19 11:23:33 +00:00
|
|
|
.wc-block-cart .wc-block-cart__submit-container--sticky {
|
2021-09-17 15:29:58 +00:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-11 13:18:32 +00:00
|
|
|
@include breakpoint("<782px") {
|
2021-10-19 11:23:33 +00:00
|
|
|
.wc-block-cart .wc-block-cart__submit-container--sticky {
|
2021-09-17 15:29:58 +00:00
|
|
|
background: $white;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
padding: $gap;
|
|
|
|
position: fixed;
|
|
|
|
width: 100%;
|
|
|
|
z-index: 9999;
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
box-shadow: 0 -10px 20px 10px currentColor;
|
2022-03-28 13:00:20 +00:00
|
|
|
color: color.adjust($gray-400, $alpha: -0.5);
|
2021-09-17 15:29:58 +00:00
|
|
|
content: "";
|
|
|
|
height: 100%;
|
|
|
|
left: 0;
|
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
|
|
|
top: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|