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:
parent
4905a5d72f
commit
1704f57aad
2 changed files with 5 additions and 1 deletions
|
@ -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;
|
||||||
|
|
|
@ -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} />
|
||||||
|
|
Loading…
Reference in a new issue