Clarified Co-Lead badging.
This commit is contained in:
parent
940cf29d04
commit
6eb72c5091
3 changed files with 15 additions and 4 deletions
|
|
@ -397,6 +397,9 @@
|
|||
{#each assigned as { vs, volunteer }}
|
||||
<div class="board-vol-chip">
|
||||
{volunteer.name}
|
||||
{#if volunteer.is_lead}
|
||||
<span class="chip-lead">Co-Lead</span>
|
||||
{/if}
|
||||
{#if checkConflict(volunteer.id, shift.id, $allVolunteerShifts ?? [], $allShifts ?? [])}
|
||||
<span title="Scheduling conflict" style="color:var(--c-warn)">⚠</span>
|
||||
{/if}
|
||||
|
|
@ -514,6 +517,14 @@
|
|||
font-size: 0.78rem;
|
||||
font-weight: 500;
|
||||
}
|
||||
.chip-lead {
|
||||
font-size: 0.68rem;
|
||||
font-weight: 600;
|
||||
background: rgba(245,158,11,0.2);
|
||||
color: var(--c-warn);
|
||||
padding: 0.05rem 0.3rem;
|
||||
border-radius: 99px;
|
||||
}
|
||||
.board-vol-remove {
|
||||
background: none;
|
||||
border: none;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue