2020-08-20 14:14:12 +00:00
|
|
|
.wc-block-cart__submit {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wc-block-cart__submit-container {
|
|
|
|
padding-bottom: $gap;
|
|
|
|
}
|
|
|
|
|
2020-04-29 10:57:58 +00:00
|
|
|
.wc-block-cart__submit-button {
|
|
|
|
width: 100%;
|
2020-05-13 15:48:03 +00:00
|
|
|
margin: 0 0 $gap;
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2020-04-29 10:57:58 +00:00
|
|
|
}
|
2020-08-20 14:14:12 +00:00
|
|
|
|
|
|
|
.is-mobile,
|
|
|
|
.is-small,
|
|
|
|
.is-medium {
|
|
|
|
.wc-block-cart__submit-container:not(.wc-block-cart__submit-container--sticky) {
|
|
|
|
padding-left: 0;
|
|
|
|
padding-right: 0;
|
|
|
|
padding-top: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@include breakpoint( ">782px" ) {
|
|
|
|
.wc-block-cart__submit-container--sticky {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@include breakpoint( "<782px" ) {
|
|
|
|
.wc-block-cart__submit-container--sticky {
|
|
|
|
background: $white;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
padding: $gap;
|
|
|
|
position: fixed;
|
|
|
|
width: 100%;
|
|
|
|
z-index: 9999;
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
box-shadow: 0 -10px 20px 10px currentColor;
|
2020-10-22 10:40:32 +00:00
|
|
|
color: transparentize($gray-400, 0.5);
|
2020-08-20 14:14:12 +00:00
|
|
|
content: "";
|
|
|
|
height: 100%;
|
|
|
|
left: 0;
|
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
|
|
|
top: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|