This commit is contained in:
Roman Pyrih
2024-12-13 11:12:54 +01:00
parent e75fa515f5
commit 51af4cba8d
3 changed files with 42 additions and 1 deletions

View File

@@ -593,6 +593,26 @@ body#product .product-info-box .product-info-box-right .product-information .pro
padding: 24px;
background: #ece9e2;
}
@media (max-width: 767px) {
body#product .product-info-box .product-info-box-right .product-information .product-actions .product-add-to-cart {
position: relative;
padding: 24px 0;
}
body#product .product-info-box .product-info-box-right .product-information .product-actions .product-add-to-cart * {
z-index: 2;
}
body#product .product-info-box .product-info-box-right .product-information .product-actions .product-add-to-cart::after {
content: "";
position: absolute;
top: 0;
bottom: 0;
left: 50%;
width: 100svw;
transform: translateX(-50%);
background: #ece9e2;
z-index: 1;
}
}
body#product .product-info-box .product-info-box-right .product-information .product-actions .product-add-to-cart > .control-label {
display: none;
}

File diff suppressed because one or more lines are too long

View File

@@ -794,6 +794,27 @@ body#product {
padding: 24px;
background: #ece9e2;
@media (max-width: 767px) {
position: relative;
padding: 24px 0;
* {
z-index: 2;
}
&::after {
content: '';
position: absolute;
top: 0;
bottom: 0;
left: 50%;
width: 100svw;
transform: translateX(-50%);
background: #ece9e2;
z-index: 1;
}
}
> .control-label {
display: none;
}