Improved bookcard view for mobile

This commit is contained in:
2026-02-17 17:30:55 +01:00
parent f87bc5bb22
commit a3d5d16f1c
2 changed files with 4 additions and 4 deletions

View File

@@ -49,8 +49,8 @@ function openBook() {
<style scoped>
img {
max-height:200px;
max-width:200px;
max-height:100px;
max-width:100px;
height:auto;
width:auto;
}

View File

@@ -70,8 +70,8 @@ function pageChange(newPageNumber) {
</div>
<div v-if="error">{{$t('bookbrowser.error', {error: error.message})}}</div>
<div v-else-if="data">
<div class="books">
<div class="book" v-for="book in data.books" :key="book.id">
<div class="">
<div class="" v-for="book in data.books" :key="book.id">
<BookCard v-bind="book" />
</div>
</div>