mirror of
https://github.com/logto-io/logto.git
synced 2025-03-31 22:51:25 -05:00
feat(console): update user management table row height and avatar size (#1151)
This commit is contained in:
parent
fdb8b246a3
commit
b2b7f370a4
2 changed files with 16 additions and 4 deletions
|
@ -13,8 +13,19 @@
|
|||
margin: _.unit(4) 0;
|
||||
}
|
||||
|
||||
.table {
|
||||
.tableContainer {
|
||||
flex: 1;
|
||||
|
||||
>table {
|
||||
>tbody {
|
||||
>tr {
|
||||
>td {
|
||||
padding-top: 10px;
|
||||
padding-bottom: 10px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.pagination {
|
||||
|
@ -23,12 +34,13 @@
|
|||
}
|
||||
|
||||
.avatar {
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
width: 28px;
|
||||
height: 28px;
|
||||
border-radius: 6px;
|
||||
object-fit: cover;
|
||||
}
|
||||
|
||||
.userName {
|
||||
width: 360px;
|
||||
font: var(--font-body-medium);
|
||||
}
|
||||
|
|
|
@ -81,7 +81,7 @@ const Users = () => {
|
|||
}}
|
||||
/>
|
||||
</div>
|
||||
<div className={classNames(styles.table, tableStyles.scrollable)}>
|
||||
<div className={classNames(styles.tableContainer, tableStyles.scrollable)}>
|
||||
<table className={classNames(!data && tableStyles.empty)}>
|
||||
<colgroup>
|
||||
<col className={styles.userName} />
|
||||
|
|
Loading…
Add table
Reference in a new issue