Welcome to Vanilla Breeze
This bell pulls live notifications from /go/notify/messages — the same contract documented at /docs/concepts/service-contracts/. Static articles like this one are the no-JS / no-backend fallback.
This bell pulls live notifications from /go/notify/messages — the same contract documented at /docs/concepts/service-contracts/. Static articles like this one are the no-JS / no-backend fallback.
Responsive table layouts that adapt to narrow viewports using container queries and card-based layouts.
When the table container is narrower than 500px, each row transforms into a card with labeled fields. Uses data-responsive="card" on the table and data-label on each cell.
| Name | Role | Status | |
|---|---|---|---|
| Alice Chen | alice.chen@company.com | Senior Engineer | Active |
| Bob Martinez | bob.martinez@company.com | Marketing Lead | Active |
| Carol Johnson | carol.johnson@company.com | Sales Manager | On Leave |
| David Kim | david.kim@company.com | Developer | Active |
| Emma Wilson | emma.wilson@company.com | UX Designer | Active |
This container is constrained to 400px width to demonstrate the card layout without resizing.
Container width: 400px
| Product | Price | Stock |
|---|---|---|
| Wireless Keyboard | $79.99 | 42 units |
| USB-C Hub | $49.99 | 128 units |
| Monitor Stand | $119.99 | 15 units |
| Webcam HD | $89.99 | 67 units |
Add data-responsive="card" to the table and data-label to each <td>:
<data-table>
<table data-responsive="card">
<thead>
<tr>
<th>Name</th>
<th>Email</th>
</tr>
</thead>
<tbody>
<tr>
<td data-label="Name">Alice Chen</td>
<td data-label="Email">alice@example.com</td>
</tr>
</tbody>
</table>
</data-table>
The data-table element uses container-type: inline-size to enable container queries. When the container is narrower than 500px:
data-label value on the left