fix(chart): Table and page entries misaligned (#30680)

This commit is contained in:
JUST.in DO IT 2024-10-23 09:36:25 -07:00 committed by GitHub
parent 6fef6ac3a2
commit 87deb19bcb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -133,7 +133,6 @@ const defaultProps: Partial<ChartProps> = {
const Styles = styled.div<{ height: number; width?: number }>`
min-height: ${p => p.height}px;
position: relative;
text-align: center;
.chart-tooltip {
opacity: 0.75;
@ -167,6 +166,7 @@ const LoadingDiv = styled.div`
const MessageSpan = styled.span`
display: block;
text-align: center;
margin: ${({ theme }) => theme.gridUnit * 4}px auto;
width: fit-content;
color: ${({ theme }) => theme.colors.grayscale.base};