feat(ui-fixes-phase6): Complete US-610 - Eliminare Spațiu Gol Deasupra Tabelelor

Implemented by Ralph autonomous loop.
Iteration: 11

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Claude Agent
2026-01-13 16:48:47 +00:00
parent bc8537f9b5
commit 6775565e01
8 changed files with 28 additions and 14 deletions

View File

@@ -3470,14 +3470,15 @@ const cleanupCompletedBatches = (storedBatchIds) => {
<style scoped>
/* Status Filters + Action Button Row */
/* US-610: Reduced margin-bottom to var(--space-sm) and use design tokens */
.status-actions-row {
display: flex;
align-items: center;
justify-content: space-between;
gap: 1rem;
gap: var(--space-md);
flex-wrap: wrap;
margin-bottom: 0.75rem;
padding-bottom: 0.5rem;
margin-bottom: var(--space-sm);
padding-bottom: var(--space-xs);
}
.status-chips {
@@ -3538,13 +3539,14 @@ const cleanupCompletedBatches = (storedBatchIds) => {
.status-chip.status-rejected.active::after { background: var(--red-600); }
/* Search and Filters Row */
/* US-610: Reduced margin-bottom to var(--space-sm) and use design tokens */
.filters-row {
display: flex;
gap: 0.5rem;
gap: var(--space-sm);
align-items: center;
flex-wrap: wrap;
margin-bottom: 0.75rem;
padding-bottom: 0.75rem;
margin-bottom: var(--space-sm);
padding-bottom: var(--space-sm);
border-bottom: 1px solid var(--surface-border);
}