Skip to content

Commit

Permalink
feat(Panel): simplify border customisation
Browse files Browse the repository at this point in the history
  • Loading branch information
zettca committed Jan 9, 2025
1 parent a6d143b commit 95724e5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cli/src/templates/Dashboard/GridPanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export const GridPanel = ({
className={css({
overflow: "visible",
position: "relative",
border: `1px solid ${theme.colors.atmo4}`,
borderWidth: 1,
borderRadius: `0 0 ${theme.radii.round} ${theme.radii.round}`,
})}
>
Expand Down
1 change: 1 addition & 0 deletions packages/core/src/Panel/Panel.styles.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ export const { useClasses, staticClasses } = createClasses("HvPanel", {
root: {
position: "relative",
padding: theme.space.sm,
borderColor: theme.colors.atmo4,
backgroundColor: theme.colors.atmo1,
overflow: "auto",
borderRadius: "inherit",
Expand Down

0 comments on commit 95724e5

Please sign in to comment.