forked from M3-Academy/challenge-vtex-io
39 lines
650 B
CSS
39 lines
650 B
CSS
|
.paymentPixWrapper {
|
||
|
display: flex;
|
||
|
flex-direction: row;
|
||
|
margin-top: 8px;
|
||
|
margin-bottom: 16px;
|
||
|
height: 39px;
|
||
|
gap: 26px;
|
||
|
align-items: center;
|
||
|
}
|
||
|
.paymentPixImg {
|
||
|
display: flex;
|
||
|
width: 66px;
|
||
|
height: 24px;
|
||
|
align-items: center;
|
||
|
}
|
||
|
.paymentPixText {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
}
|
||
|
.paymentPixValue {
|
||
|
margin: 0;
|
||
|
font-family: "Open Sans";
|
||
|
font-style: normal;
|
||
|
font-weight: 700;
|
||
|
font-size: 18px;
|
||
|
line-height: 25px;
|
||
|
|
||
|
color: rgba(0, 0, 0, 0.58);
|
||
|
}
|
||
|
.paymentPixDiscount {
|
||
|
margin: 0;
|
||
|
color: #929292;
|
||
|
font-family: "Open Sans";
|
||
|
font-style: normal;
|
||
|
font-weight: 300;
|
||
|
font-size: 13px;
|
||
|
line-height: 18px;
|
||
|
}
|