Skip to content

Commit da66484

Browse files
author
manfredsteger
committed
Improve poll slot information display and participant visibility
Update styling for poll slot details and participant entries to ensure consistent appearance and better accessibility, matching title styling for all info elements. Replit-Commit-Author: Agent Replit-Commit-Session-Id: 1117a91e-7ac6-4005-bde2-487c64d5789f Replit-Commit-Checkpoint-Type: full_checkpoint Replit-Commit-Event-Id: 08e736f3-6ae8-44cc-a201-bb40225b0b58 Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/afc5b6d1-cfc6-4564-802f-661c3d73f96b/1117a91e-7ac6-4005-bde2-487c64d5789f/EC2RYeM
1 parent ef9c121 commit da66484

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

client/src/components/ResultsChart.tsx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -569,26 +569,26 @@ export function ResultsChart({ results, publicToken, isAdminAccess = false, onCa
569569
<div key={option.id} className="border border-border rounded-xl p-4">
570570
<div className="flex items-start justify-between gap-3 mb-3">
571571
<div className="flex-1 min-w-0">
572-
<div className="flex flex-wrap items-center gap-x-4 gap-y-1 text-sm">
572+
<div className="flex flex-wrap items-center gap-x-4 gap-y-1">
573573
<span className="inline-flex items-center gap-1.5 font-semibold text-foreground text-base">
574574
<ClipboardList className="w-4 h-4 text-primary shrink-0" />
575575
{slotTitle}
576576
</span>
577577
{slotDate && (
578-
<span className="inline-flex items-center gap-1 text-muted-foreground">
579-
<Calendar className="w-3.5 h-3.5 shrink-0" />
578+
<span className="inline-flex items-center gap-1.5 font-semibold text-foreground text-base">
579+
<Calendar className="w-4 h-4 text-primary shrink-0" />
580580
{slotDate}
581581
</span>
582582
)}
583583
{slotWeekday && (
584-
<span className="inline-flex items-center gap-1 text-muted-foreground">
585-
<CalendarDays className="w-3.5 h-3.5 shrink-0" />
584+
<span className="inline-flex items-center gap-1.5 font-semibold text-foreground text-base">
585+
<CalendarDays className="w-4 h-4 text-primary shrink-0" />
586586
{slotWeekday}
587587
</span>
588588
)}
589589
{slotTimeStart && (
590-
<span className="inline-flex items-center gap-1 text-muted-foreground">
591-
<Clock className="w-3.5 h-3.5 shrink-0" />
590+
<span className="inline-flex items-center gap-1.5 font-semibold text-foreground text-base">
591+
<Clock className="w-4 h-4 text-primary shrink-0" />
592592
{slotTimeStart}{slotTimeEnd ? ` – ${slotTimeEnd}` : ''}
593593
</span>
594594
)}

0 commit comments

Comments
 (0)