24 lines
311 B
Plaintext
24 lines
311 B
Plaintext
|
|
.card-item {
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: space-between;
|
||
|
|
line-height: 1.57;
|
||
|
|
}
|
||
|
|
|
||
|
|
.label,
|
||
|
|
.value {
|
||
|
|
min-width: 0;
|
||
|
|
word-break: break-all;
|
||
|
|
flex-shrink: 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.label {
|
||
|
|
width: var(--label-width, 5em);
|
||
|
|
}
|
||
|
|
|
||
|
|
.value {
|
||
|
|
flex: 1;
|
||
|
|
display: inline-flex;
|
||
|
|
justify-content: flex-end;
|
||
|
|
}
|