super basic table sorting and stylings

This commit is contained in:
gingervitis
2020-12-22 23:15:37 -08:00
parent 05b9634180
commit 88deced9f2
4 changed files with 52 additions and 8 deletions

20
web/styles/chat.scss Normal file
View File

@@ -0,0 +1,20 @@
.chat-messages {
.ant-table-small .ant-table-selection-column {
width: 20px;
min-width: 20px;
}
.ant-table-tbody > tr > td {
transition: background 0.15s;
}
.ant-table-cell {
font-size: 12px;
&.name-col {
text-overflow: ellipsis;
overflow: hidden;
}
}
}
.ant-table-filter-dropdown {
max-width: 250px;
}