[PIE-17] Design refinements and improvements #8

Merged
breadone merged 4 commits from PIE-17 into main 2025-08-13 19:24:10 +12:00
Showing only changes of commit 4ca32453e2 - Show all commits

View File

@ -1,4 +1,6 @@
---
import TagRow from "../Card/TagRow.astro";
const { re } = Astro.props
@ -23,4 +25,5 @@ const waitTime = formatTime(re.waittime)
{workTime && (<p class="border-r px-2">{workTime} Work</p>)}
{waitTime && (<p class="border-r px-2">{waitTime} Wait</p>)}
{re.rating !== 0 && (<p class="pl-2">{re.rating}</p><p class="text-white/40 text-xs">/10</p>)}
</div>
</div>
<TagRow tagIds={re.tags}/>