Skip to content

Commit

Permalink
chore: fix button paddings, add node shadow
Browse files Browse the repository at this point in the history
  • Loading branch information
HQFOX authored and francisco-guilherme committed Aug 9, 2024
1 parent d953fb1 commit 300095c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion packages/lab/src/Flow/stories/SubFlow/Level.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const classes = {
height: "100%",
}),
header: css({
paddingLeft: theme.spacing("xs"),
padding: theme.spacing("2px", "xs", "2px", "xs"),
borderRadius: "16px 16px 0 0",
borderBottom: `1px solid ${theme.colors.atmo3}`,
display: "flex",
Expand All @@ -51,6 +51,7 @@ const classes = {
gap: theme.spacing("xs"),
}),
childless: css({
padding: theme.spacing(0, 0, 0, "xs"),
borderRadius: "16px",
border: "unset",
}),
Expand Down
3 changes: 2 additions & 1 deletion packages/lab/src/Flow/stories/SubFlow/Node.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,14 @@ const classes = {
maxHeight: 300,
overflow: "auto",
borderRadius: "16px",
boxShadow: theme.colors.shadow,
}),
levelRoot: css({
boxShadow: theme.colors.shadow,
borderWidth: 0,
}),
levelHeader: css({
padding: theme.spacing(0, "xs", 0, "xs"),
padding: theme.spacing("4px", "xs", "4px", "xs"),
boxShadow: theme.colors.shadow,
borderWidth: 0,
}),
Expand Down

0 comments on commit 300095c

Please sign in to comment.