style update

This commit is contained in:
gingervitis 2020-12-27 01:15:17 -08:00
parent 3e959fe2d4
commit 2e3737646c
2 changed files with 3 additions and 2 deletions

View File

@ -168,7 +168,7 @@ export default function Chat() {
className: 'toggle-col',
filters: [{ text: 'Visible messages', value: true }, { text: 'Hidden messages', value: false }],
onFilter: (value, record) => record.visible === value,
render: visible => visible ? null : <StopOutlined />,
render: visible => visible ? null : <StopOutlined title="This message is hidden" />,
width: 30,
},
];

View File

@ -26,7 +26,8 @@
}
.message-contents {
overflow: hidden;
overflow: auto;
max-height: 200px;
img {
position: relative;
margin-top: -5px;