fix(fe): add width 100% to .filters - ensure filters span full container width

CRITICAL FIX: Filters container must explicitly set width: 100% to span
the full parent width and prevent content-based shrink-to-fit.

Without width: 100%, .filters collapses to content width, causing
filter inputs to wrap to multiple lines when parent container width
changes.

Added 'width: 100%;' to .filters in:
- ModelsList.vue
- ShadowRunQueue.vue
- ApprovalQueue.vue
- DataQualityPage.vue

Result: Filters now correctly span full width and display on single line.

Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-08-15 23:28:30 +09:00
parent fada81f216
commit a6659bc840
4 changed files with 4 additions and 0 deletions
@@ -187,6 +187,7 @@ function handleSearch() {
display: flex;
align-items: center;
gap: var(--ks-space-3);
width: 100%;
}
.search-input {