Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
Hello All,
I have an issue with the size chart in mobile view. The left border of the size chart is not showing up on mobile devices, but it shows in the chrome developer. I've provided the code that I am using below. Why does some work in the chrome developer, but not on the actual device?
https://2d26b3.myshopify.com/products/amalia
pw: reishi
@media only screen and (max-width:777px) {
modal-dialog.sizeChart .contents {
height: 41%;
width: clamp(40ch,90vw,80ch);
border-left: 1px solid !important;
}
}
Hi @JhordanMSUITE ,
Try adding the below CSS and let me know if this fixes the issue.
@media only screen and (max-width: 777px){
modal-dialog.sizeChart .contents {
max-width: 90% !important;
}
}