Grid
<vox-grid> is a responsive CSS-grid container. Columns auto-fit to the min width by default; cols fixes the count.
html
<vox-grid min="240px" gap="lg">
<vox-card heading="…">…</vox-card>
<vox-card heading="…">…</vox-card>
</vox-grid>
<vox-grid cols="2">…</vox-grid>API
| Attribute | Type | Default | Description |
|---|---|---|---|
cols | number | 0 (auto-fit) | Fixed column count |
min | string | 240px | Minimum track width when auto-fitting |
gap | sm | md | lg | md | Gutter size |