Skip to content

Commit

Permalink
fix: telegraph layout border issue
Browse files Browse the repository at this point in the history
  • Loading branch information
kylemcd committed Jan 24, 2025
1 parent 8396a6f commit a9ece46
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/hip-starfishes-flow.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@telegraph/layout": patch
---

fix border issue
4 changes: 3 additions & 1 deletion packages/layout/src/Box/Box.styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@
--z-index: auto;

background-color: var(--background-color);
border: var(--border-width) var(--border-style) var(--border-color);
border-width: var(--border-width);
border-style: var(--border-style);
border-color: var(--border-color);
padding: var(--padding);
margin: var(--margin);
border-radius: var(--border-radius);
Expand Down

0 comments on commit a9ece46

Please sign in to comment.