29 lines
341 B
CSS
29 lines
341 B
CSS
|
/* .pix-container {
|
||
|
|
||
|
} */
|
||
|
|
||
|
.pix-content {
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
gap: 26px;
|
||
|
margin: 8px 0 16px;
|
||
|
}
|
||
|
|
||
|
.pix-image {
|
||
|
height: fit-content;
|
||
|
}
|
||
|
|
||
|
.pix-value {
|
||
|
font-weight: 700;
|
||
|
font-size: 18px;
|
||
|
color: rgba(0, 0, 0, 0.58);
|
||
|
margin: 0;
|
||
|
}
|
||
|
|
||
|
.pix-text {
|
||
|
font-weight: 300;
|
||
|
font-size: 13px;
|
||
|
color: #929292;
|
||
|
margin: 0;
|
||
|
}
|