0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-01-06 20:40:08 -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 _; @use '@/scss/underscore' as _;
.tableEmptyTableData {
border-bottom: unset;
}
.tableEmpty { .tableEmpty {
display: flex; display: flex;
flex-direction: column; flex-direction: column;

View file

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