31 lines
467 B
CSS
31 lines
467 B
CSS
[class*="pix-container"] {
|
|
display: flex;
|
|
align-items: center;
|
|
margin: 8px 0 0;
|
|
}
|
|
|
|
[class*="price-wrapper"] {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin: 0 0 0 26px;
|
|
}
|
|
|
|
[class*="pix-image"] {
|
|
width: 66px;
|
|
height: 24px;
|
|
}
|
|
|
|
[class*="price-value"] {
|
|
font-weight: 700;
|
|
font-size: 18px;
|
|
line-height: 25px;
|
|
color: rgba(0, 0, 0, 0.58);
|
|
}
|
|
|
|
[class*="price-discount"] {
|
|
font-weight: 300;
|
|
font-size: 13px;
|
|
line-height: 18px;
|
|
color: #929292;
|
|
}
|