27 lines
337 B
CSS
27 lines
337 B
CSS
*
|
|
{
|
|
margin:0;
|
|
}
|
|
|
|
|
|
[class*="productNameContainer--quickview"] {
|
|
color: gray;
|
|
text-align: right;
|
|
}
|
|
|
|
[class*="shareContainer"] {
|
|
display: none;
|
|
}
|
|
|
|
[class*="shippingContainer"] {
|
|
display: flex;
|
|
}
|
|
|
|
[class*="shippingContainer"] button {
|
|
margin-top: 20px;
|
|
width: 50px;
|
|
height: 50px;
|
|
background-color: black;
|
|
color: white;
|
|
}
|