We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2db7dfd commit 64bca46Copy full SHA for 64bca46
.changeset/slow-cooks-tickle.md
@@ -0,0 +1,5 @@
1
+---
2
+"@badrap/libapp": patch
3
4
+
5
+Remove display="inline" support from ui/experimental/Box
src/ui/experimental/Box.ts
@@ -17,7 +17,7 @@ type BoxProps = {
17
flexBasis?: Responsive<string>;
18
flexGrow?: Responsive<string>;
19
flexShrink?: Responsive<string>;
20
- display?: Responsive<"none" | "inline" | "block" | "inline-block">;
+ display?: Responsive<"none" | "block" | "inline-block">;
21
children?: UiNode;
22
};
23
0 commit comments