mirror of
https://github.com/wassname/talk.git
synced 2026-07-08 11:27:22 +08:00
35 lines
383 B
CSS
35 lines
383 B
CSS
.table {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.table, .headerRow, .row {
|
|
display: flex;
|
|
}
|
|
|
|
.headerRowItem, .item {
|
|
flex: 1;
|
|
padding: 20px;
|
|
|
|
&:nth-child(2) {
|
|
flex: 2;
|
|
}
|
|
}
|
|
|
|
.username {
|
|
word-break: break-all;
|
|
}
|
|
|
|
.headerRowItem {
|
|
color: #595959;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.headerRow, .row {
|
|
border-bottom: 1px solid #e0e0e0;
|
|
}
|
|
|
|
.action {
|
|
color: black;
|
|
font-weight: bold;
|
|
}
|