hummingbird icon indicating copy to clipboard operation
hummingbird copied to clipboard

Variants display problem on product page

Open ash-f opened this issue 1 year ago • 2 comments

This style results the variants attached each other without any spaces. Which not looking good and hard to read. also it doesn't wraps when they are many.

.page-product .product__variants .variant ul {
    align-items: center;
    display: flex;
}

So it should be something like this.

.page-product .product__variants .variant ul {
    align-items: center;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

ash-f avatar Oct 25 '23 19:10 ash-f