Skip to content

Commit 740e9a5

Browse files
#RI-3519-update styles
1 parent 92e85fb commit 740e9a5

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

redisinsight/ui/src/pages/databaseAnalysis/components/top-namespace/Table.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ const NameSpacesTable = (props: Props) => {
141141
{
142142
name: 'Data Type',
143143
field: 'types',
144-
width: '34%',
144+
width: '32%',
145145
align: 'left',
146146
className: 'dataType',
147147
render: (value: NspTypeSummary[]) => (
@@ -153,7 +153,7 @@ const NameSpacesTable = (props: Props) => {
153153
{
154154
name: 'Total Memory',
155155
field: 'memory',
156-
width: '12%',
156+
width: '13%',
157157
sortable: true,
158158
align: 'right',
159159
render: (value: number) => {
@@ -177,7 +177,7 @@ const NameSpacesTable = (props: Props) => {
177177
{
178178
name: 'Total Keys',
179179
field: 'keys',
180-
width: '10%',
180+
width: '11%',
181181
sortable: true,
182182
align: 'right',
183183
render: (value: number) => (

redisinsight/ui/src/pages/databaseAnalysis/components/top-namespace/styles.module.scss

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@
8484
overflow: auto;
8585
position: relative;
8686
max-height: 100%;
87+
overflow-y: hidden;
8788

8889
:global(.euiTableRow-isExpandedRow .euiTableCellContent) {
8990
padding: 0 12px !important;
@@ -196,7 +197,7 @@
196197

197198
.expanded {
198199
display: grid;
199-
grid-template-columns: auto calc(34%) calc(12% + 6px) calc(10% + 28px);
200+
grid-template-columns: auto calc(32%) calc(13% + 6px) calc(11% + 22px);
200201
grid-column-gap: 0;
201202
height: 42px;
202203
width: 100%;
@@ -214,7 +215,7 @@
214215
padding: 0 12px;
215216

216217
&:last-child {
217-
padding: 0 34px 0 12px;
218+
padding: 0 26px 0 12px;
218219
}
219220
}
220221
}

0 commit comments

Comments
 (0)