0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2024-12-16 20:26:19 -05:00

fix(console): remove underline in the empty table (#1180)

This commit is contained in:
Xiao Yijun 2022-06-21 16:57:58 +08:00 committed by GitHub
parent 4905a5d72f
commit 1704f57aad
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

View file

@ -1,5 +1,9 @@
@use '@/scss/underscore' as _;
.tableEmptyTableData {
border-bottom: unset;
}
.tableEmpty {
display: flex;
flex-direction: column;

View file

@ -17,7 +17,7 @@ const TableEmpty = ({ title, content, children, columns }: Props) => {
return (
<tr>
<td colSpan={columns}>
<td colSpan={columns} className={styles.tableEmptyTableData}>
<div className={styles.tableEmpty}>
<div>
<img src={EmptyImage} />