Skip to content

Commit

Permalink
style: Update margins
Browse files Browse the repository at this point in the history
  • Loading branch information
bprusinowski committed Dec 6, 2023
1 parent f59ea74 commit 71fa9cd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/components/chart-filters-list.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ export const ChartFiltersList = (props: ChartFiltersListProps) => {
<Typography
component="div"
variant="body2"
sx={{ my: 4, color: "grey.800" }}
sx={{ mb: 4, color: "grey.800" }}
data-testid="chart-filters-list"
>
{allFilters.map(({ dimension, value }, i) => (
Expand Down
2 changes: 1 addition & 1 deletion app/components/chart-preview.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ export const ChartPreviewInner = (props: ChartPreviewProps) => {
}
/>
</>
<Box ref={containerRef} height={containerHeight.current!}>
<Box ref={containerRef} height={containerHeight.current!} mt={4}>
{isTablePreview ? (
<DataSetTable
sx={{
Expand Down
1 change: 1 addition & 0 deletions app/components/chart-published.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -246,6 +246,7 @@ const ChartPublishedInner = (props: ChartPublishInnerProps) => {
ref={containerRef}
height={containerHeight.current!}
flexGrow={1}
mt={4}
>
{isTablePreview ? (
<DataSetTable
Expand Down

0 comments on commit 71fa9cd

Please sign in to comment.