fix(helpdesk): move search above period selector in risk radar toolbar

Search input now comes first (left), period segment control after.
Both in a horizontal flex row on the same line.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-06 00:31:24 +02:00
parent 23503049d1
commit e684d20be0
2 changed files with 6 additions and 5 deletions

View File

@@ -523,14 +523,15 @@
/* --- Risk Radar --- */
.helpdesk-risk-radar-toolbar {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: calc(var(--app-spacing) * 0.5);
align-items: center;
gap: calc(var(--app-spacing) * 0.75);
flex-wrap: wrap;
margin-bottom: calc(var(--app-spacing) * 0.75);
}
.helpdesk-risk-radar-search {
width: 100%;
flex: 1;
min-width: 12rem;
max-width: 20rem;
}