@christianriedl/media 1.0.175 → 1.0.176
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/views/BooksPage.vue +5 -5
package/package.json
CHANGED
package/src/views/BooksPage.vue
CHANGED
|
@@ -369,13 +369,13 @@
|
|
|
369
369
|
</v-row>
|
|
370
370
|
<v-divider></v-divider>
|
|
371
371
|
<v-row v-if="isMobile" dense align="center">
|
|
372
|
-
<v-col cols="7">TITEL</v-col>
|
|
373
|
-
<v-col cols="2">JAHR</v-col>
|
|
374
|
-
<v-col cols="3">RATING</v-col>
|
|
375
|
-
</v-row>
|
|
376
|
-
<v-row v-else dense align="center">
|
|
377
372
|
<v-col cols="9">TITEL</v-col>
|
|
378
373
|
<v-col cols="3">JAHR</v-col>
|
|
374
|
+
</v-row>
|
|
375
|
+
<v-row v-else dense align="center">
|
|
376
|
+
<v-col cols="6">TITEL</v-col>
|
|
377
|
+
<v-col cols="2">JAHR</v-col>
|
|
378
|
+
<v-col cols="2">RATING</v-col>
|
|
379
379
|
<v-col v-if="author.id" cols="2">
|
|
380
380
|
<v-btn v-if="!showAddBookLine" @click="addNewBook" :disabled="readonly" append-icon="$plus">BOOK</v-btn>
|
|
381
381
|
<v-btn v-if="showAddBookLine" @click="cancelAddNewBook" :disabled="readonly" icon="$cancel"></v-btn>
|