0
Fork 0
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:
Xiao Yijun 2022-06-20 11:23:16 +08:00 committed by GitHub
parent fdb8b246a3
commit b2b7f370a4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 16 additions and 4 deletions

View file

@ -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);
}

View file

@ -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} />