feat(admin): responsive mobile layout for feed management #16
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "exe-dev-bot/kiosk:feat/mobile-admin-ux"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Problem
The feed configuration table overflows on mobile viewports (≤640px). The table renders at 475px in a 298px container, pushing edit/delete buttons off-screen and making feed management impossible on phones.
Solution
CSS-only change that converts the 4-column table into a card-based layout on mobile:
No HTML or JS changes required — uses CSS grid to restyle the existing table elements as cards within the
@media (max-width: 640px)block.