We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 48ab260 commit 540f169Copy full SHA for 540f169
src/routes/(app)/positions/[id]/+page.svelte
@@ -165,11 +165,13 @@
165
</h2>
166
{#each mandateYearRatios as { studyYear, percentage }}
167
<div class="flex w-64 flex-row items-center gap-2">
168
- <div class="bar-label w-24">
+ <div class="w-24">
169
{m.positions_study_year()} {studyYear}
170
</div>
171
<progress class="progress" value={percentage} max="100"></progress>
172
- <div class="text-xs text-neutral-400">{percentage.toFixed(1)}%</div>
+ <div class="w-16 text-right text-xs text-neutral-400">
173
+ {percentage.toFixed(1)}%
174
+ </div>
175
176
{/each}
177
0 commit comments