--- task: Fix the bulk-apply "Apply" buttons on AddProductsToStore Step 2 (mobile layout broken) cycles: 5 context: true private: false started: 2026-05-16T17:49:31Z finished: 2026-05-16T17:49:35Z --- ## files - resources/js/Pages/AddProductsToStore.vue [lines 303-332] — Step 2 bulk-apply card with broken input-group layout ## steps 1. In `AddProductsToStore.vue` at lines ~308-313 (price bulk-apply), replace `
` with `
` and change the button class from `btn btn-primary rounded-end-pill` to `btn btn-primary rounded-pill flex-shrink-0` 2. In `AddProductsToStore.vue` at lines ~319-324 (availability bulk-apply), apply the identical replacement — `input-group` → `d-flex gap-2 align-items-center`, button class → `btn btn-primary rounded-pill flex-shrink-0` ## context Bulk apply card (lines 303-332): ```html
Bulk apply
``` Target (apply to both price and availability rows): ```html
``` ## notes - dictionary: ai-docs/dictionary.md - linters: none detected - constraints: mobile-first fix only — no backend changes, no new files, no route changes