40 lines
740 B
Plaintext
40 lines
740 B
Plaintext
.panel {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
.title {
|
|
padding-block: 20px 10px;
|
|
padding-inline: 10px;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
text-align: left;
|
|
}
|
|
.panel_content {
|
|
padding: 10px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
background-color: #fff;
|
|
}
|
|
.renderRow {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
.renderLabel {
|
|
min-width: 140px;
|
|
margin-right: 16px;
|
|
color: rgba(0, 0, 0, 0.45);
|
|
}
|
|
.renderValue {
|
|
display: -webkit-box;
|
|
-webkit-box-orient: vertical;
|
|
-webkit-line-clamp: 2;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
text-align: right;
|
|
}
|
|
|
|
[class='renderRow']:not(:last-child) {
|
|
margin-bottom: 10px;
|
|
}
|