Skip to content

Commit

Permalink
fix: Sizing issues
Browse files Browse the repository at this point in the history
  • Loading branch information
bprusinowski committed Feb 1, 2024
1 parent 1b32081 commit 2057cb6
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions app/components/chart-preview.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,10 @@ const TallLayoutRow = (props: TallLayoutRowProps) => {
<Box
sx={{
display: "grid",
gridTemplateColumns: { xs: "1fr", md: "1fr 1fr" },
gridTemplateColumns: {
xs: "1fr",
md: "calc(50% - 8px) calc(50% - 8px)",
},
gap: 4,
}}
>
Expand Down Expand Up @@ -582,7 +585,7 @@ export const ChartPreviewInner = (props: ChartPreviewInnerProps) => {
<Box
ref={containerRef}
height={containerHeight.current}
mt={4}
pt={4}
>
{isTablePreview ? (
<DataSetTable
Expand Down

0 comments on commit 2057cb6

Please sign in to comment.