feat(worker): Geschiedenis screen with session list and CSV export

This commit is contained in:
Bas van Rossem
2026-06-17 16:30:34 +02:00
parent 5af5a9c2bb
commit 134e01a2e8
5 changed files with 302 additions and 1 deletions

View File

@@ -273,3 +273,82 @@ body {
border-radius: 12px;
cursor: pointer;
}
/* ---- History (Geschiedenis) ---- */
.history-header {
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
}
.pill-btn {
padding: 10px 16px;
font-size: 14px;
font-weight: 600;
color: #ffffff;
background: var(--primary);
border: none;
border-radius: 999px;
cursor: pointer;
white-space: nowrap;
}
.session-list {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
gap: 12px;
}
.session-card {
border: 1px solid var(--border);
border-radius: 16px;
padding: 16px;
display: flex;
flex-direction: column;
gap: 12px;
}
.session-main {
display: flex;
flex-direction: column;
gap: 4px;
}
.session-name {
font-size: 16px;
font-weight: 600;
}
.session-datetime {
font-size: 14px;
color: var(--text-muted);
}
.session-badges {
display: flex;
flex-wrap: wrap;
gap: 8px;
}
.pill {
display: inline-flex;
align-items: center;
padding: 4px 10px;
font-size: 13px;
font-weight: 600;
border-radius: 999px;
}
.pill-grey {
background: #f3f4f6;
color: var(--text-muted);
}
.pill-blue {
background: var(--primary-light);
color: var(--primary);
}