Skip to content
4 changes: 2 additions & 2 deletions app/pages/library/[id].vue
Original file line number Diff line number Diff line change
Expand Up @@ -176,15 +176,15 @@ async function removeBook() {
<!-- ISBN -->
<div
v-if="book.isbn"
class="flex flex-wrap items-center justify-center md:justify-start gap-x-2 gap-y-1 text-sm text-muted"
class="text-sm text-muted text-center md:text-left"
>
ISBN: {{ book.isbn }}
</div>

<!-- Added At -->
<div
v-if="formattedAddedAt"
class="flex flex-wrap items-center justify-center md:justify-start gap-x-2 gap-y-1 text-sm text-muted"
class="text-sm text-muted text-center md:text-left"
>
Added: {{ formattedAddedAt }}
</div>
Expand Down
Loading