Skip to content

Commit

Permalink
fix(chart): Table and page entries misaligned (apache#30680)
Browse files Browse the repository at this point in the history
  • Loading branch information
justinpark authored Oct 23, 2024
1 parent 6fef6ac commit 87deb19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion superset-frontend/src/components/Chart/Chart.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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};
Expand Down

0 comments on commit 87deb19

Please sign in to comment.