Skip to content

Commit

Permalink
Remove display="inline" support from ui/experimental/Box
Browse files Browse the repository at this point in the history
  • Loading branch information
jviide committed Nov 11, 2024
1 parent 2db7dfd commit 64bca46
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/slow-cooks-tickle.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@badrap/libapp": patch
---

Remove display="inline" support from ui/experimental/Box
2 changes: 1 addition & 1 deletion src/ui/experimental/Box.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ type BoxProps = {
flexBasis?: Responsive<string>;
flexGrow?: Responsive<string>;
flexShrink?: Responsive<string>;
display?: Responsive<"none" | "inline" | "block" | "inline-block">;
display?: Responsive<"none" | "block" | "inline-block">;
children?: UiNode;
};

Expand Down

0 comments on commit 64bca46

Please sign in to comment.