39 lines
677 B
CSS
39 lines
677 B
CSS
.pixContainer {
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
height: 39px;
|
|
column-gap: 26px;
|
|
margin: 8px 0 16px 0;
|
|
}
|
|
|
|
.pixContainer__img {
|
|
width: 66px;
|
|
height: 24px;
|
|
}
|
|
|
|
.pixContainer__discount {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.pixContainer__priceFinal {
|
|
font-family: 'Open Sans', sans-serif;
|
|
font-style: normal;
|
|
font-weight: 700;
|
|
font-size: 18px;
|
|
line-height: 25px;
|
|
color: rgba(0, 0, 0, 0.58);
|
|
}
|
|
|
|
.pixContainer__discount__value {
|
|
font-family: 'Open Sans';
|
|
font-style: normal;
|
|
font-weight: 300;
|
|
font-size: 13px;
|
|
line-height: 18px;
|
|
color: #929292;
|
|
}
|