diff --git a/packages/console/src/ds-components/Table/index.module.scss b/packages/console/src/ds-components/Table/index.module.scss index a4d807921..29d266763 100644 --- a/packages/console/src/ds-components/Table/index.module.scss +++ b/packages/console/src/ds-components/Table/index.module.scss @@ -89,28 +89,6 @@ } } - tr.hoverEffect:hover { - background: var(--color-hover); - - td { - border-top: 1px solid transparent; - } - - + tr { - td { - border-top: 1px solid transparent; - } - } - - td:first-child { - border-radius: 8px 0 0 8px; - } - - td:last-child { - border-radius: 0 8px 8px 0; - } - } - &.hasBorder { .filterContainer { border: 1px solid var(--color-divider); @@ -135,10 +113,14 @@ } .bodyTable { - padding: 0; + padding: 0 0 _.unit(3); border: 1px solid var(--color-divider); border-top: unset; + tr { + height: 56px; + } + tr:first-child td { border-top: 1px solid transparent; } @@ -151,13 +133,35 @@ padding-right: _.unit(7); } } + } - tr.hoverEffect:hover { - td:first-child, - td:last-child { - border-radius: 0; + .bodyTable tr.hoverEffect:hover { + background: var(--color-hover); + + td { + border-top: 1px solid transparent; + } + + + tr { + td { + border-top: 1px solid transparent; } } + + td:first-child { + border-radius: 8px 0 0 8px; + } + + td:last-child { + border-radius: 0 8px 8px 0; + } + } + + &.hasBorder .bodyTable tr.hoverEffect:hover { + td:first-child, + td:last-child { + border-radius: 0; + } } } diff --git a/packages/console/src/pages/TenantSettings/TenantBasicSettings/SigningKeys/index.module.scss b/packages/console/src/pages/TenantSettings/TenantBasicSettings/SigningKeys/index.module.scss index 0f7b38137..4cd70f350 100644 --- a/packages/console/src/pages/TenantSettings/TenantBasicSettings/SigningKeys/index.module.scss +++ b/packages/console/src/pages/TenantSettings/TenantBasicSettings/SigningKeys/index.module.scss @@ -1,6 +1,7 @@ @use '@/scss/underscore' as _; .idWrapper { + display: inline-block; font: var(--font-body-2); font-family: 'Roboto Mono', monospace; color: var(--color-text);