27 lines
357 B
CSS
27 lines
357 B
CSS
.container-flex {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
gap: 26px;
|
|
margin-top: 8px;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.value {
|
|
font-weight: 700;
|
|
font-size: 18px;
|
|
line-height: 25px;
|
|
margin: 0;
|
|
|
|
color: rgba(0, 0, 0, 0.58);
|
|
}
|
|
|
|
.text {
|
|
font-weight: 300;
|
|
font-size: 13px;
|
|
line-height: 18px;
|
|
margin: 0;
|
|
|
|
color: #929292;
|
|
}
|