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:
parent
4905a5d72f
commit
1704f57aad
2 changed files with 5 additions and 1 deletions
|
@ -1,5 +1,9 @@
|
|||
@use '@/scss/underscore' as _;
|
||||
|
||||
.tableEmptyTableData {
|
||||
border-bottom: unset;
|
||||
}
|
||||
|
||||
.tableEmpty {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
|
|
|
@ -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} />
|
||||
|
|
Loading…
Reference in a new issue