You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Grid component creates CSS rules based on props and insert that string into an inline style tag. The component only creates the rules it needs for itself, however other Grid components may generate duplicative styles of their own.
57
+
The Grid component uses `display: inline-block` to create grid layouts.
58
+
It creates CSS rules based on props and inserts that string into an inline style tag.
59
+
The component only creates the rules it needs for itself,
60
+
however other Grid components may generate duplicative styles of their own.
58
61
59
62
## Caveats
60
-
- Produces an inline style tag within the body
63
+
- Produces an inline style **tag** within the body (e.g. not inline styles)
61
64
- Similar component instances create duplicative CSS rules – this may or may not affect performance
0 commit comments