Skip to content

Commit

Permalink
fix: styles for dash. widget
Browse files Browse the repository at this point in the history
  • Loading branch information
MauriceNino committed Jun 30, 2022
1 parent 60b8838 commit 0bf9548
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/modules/dash./DashdotModule.tsx
Expand Up @@ -57,7 +57,7 @@ const useStyles = createStyles((theme, _params) => ({
display: 'flex',
flexDirection: 'row',
flexWrap: 'wrap',
rowGap: 15,
rowGap: 10,
columnGap: 10,
},
iframe: {
Expand Down Expand Up @@ -214,7 +214,7 @@ export function DashdotComponent() {
'dark'
? theme.colors.dark[7]
: theme.colors.gray[0]
).substring(1)}${isCompact ? '&gap=1' : `&gap=5&innerRadius=${theme.radius.md}`}${
).substring(1)}${isCompact ? '&gap=10' : '&gap=5'}&innerRadius=${theme.radius.lg}${
graph.params
? `&${Object.entries(graph.params)
.map(([key, value]) => `${key}=${value.toString()}`)
Expand Down

0 comments on commit 0bf9548

Please sign in to comment.