19 lines
257 B
CSS
19 lines
257 B
CSS
[class*="html--pix"] {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 26px;
|
|
}
|
|
|
|
[class*="html--cart-button"] {
|
|
display: flex;
|
|
gap: 10px;
|
|
|
|
}
|
|
|
|
@media screen and (max-width: 375px) {
|
|
|
|
[class*="html--cart-button"] {
|
|
flex-direction: column;
|
|
}
|
|
}
|