mirror of
https://github.com/logto-io/logto.git
synced 2025-04-07 23:01:25 -05:00
refactor(console): remove bottom padding from compact tables (#4673)
This commit is contained in:
parent
a2ede7e36e
commit
81e8a2641a
2 changed files with 2 additions and 1 deletions
|
@ -113,7 +113,7 @@
|
|||
}
|
||||
|
||||
.bodyTable {
|
||||
padding: 0 0 _.unit(3);
|
||||
padding: 0;
|
||||
border: 1px solid var(--color-divider);
|
||||
border-top: unset;
|
||||
|
||||
|
|
|
@ -116,6 +116,7 @@ function SigningKeys() {
|
|||
<FormField title={`tenants.signing_keys.${isPrivateKey ? 'private' : 'cookie'}_keys_in_use`}>
|
||||
<Table
|
||||
hasBorder
|
||||
isRowHoverEffectDisabled
|
||||
isLoading={isLoadingKeys || isRotating}
|
||||
errorMessage={error?.body?.message ?? error?.message}
|
||||
rowIndexKey="id"
|
||||
|
|
Loading…
Add table
Reference in a new issue