mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-08-12 00:09:02 +08:00
fix: fixed extra space at bottom for list and table panel (#6049)
This commit is contained in:
parent
708158f50f
commit
58d6487f77
@ -33,7 +33,14 @@ export const Card = styled(CardComponent)<CardProps>`
|
|||||||
}
|
}
|
||||||
|
|
||||||
.ant-card-body {
|
.ant-card-body {
|
||||||
|
${({ $panelType }): StyledCSS =>
|
||||||
|
$panelType === PANEL_TYPES.TABLE
|
||||||
|
? css`
|
||||||
|
height: 100%;
|
||||||
|
`
|
||||||
|
: css`
|
||||||
height: calc(100% - 30px);
|
height: calc(100% - 30px);
|
||||||
|
`}
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
@ -63,6 +63,8 @@
|
|||||||
height: 40px;
|
height: 40px;
|
||||||
justify-content: end;
|
justify-content: end;
|
||||||
padding: 0 8px;
|
padding: 0 8px;
|
||||||
|
margin-top: 12px;
|
||||||
|
margin-bottom: 2px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -52,6 +52,8 @@
|
|||||||
height: 40px;
|
height: 40px;
|
||||||
justify-content: end;
|
justify-content: end;
|
||||||
padding: 0 8px;
|
padding: 0 8px;
|
||||||
|
margin-top: 12px;
|
||||||
|
margin-bottom: 2px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user