mirror of
https://github.com/gotson/komga.git
synced 2026-05-08 12:35:30 +02:00
fix(webui): better display of readlist context information for small screen
closes #791
This commit is contained in:
parent
8bd36b45af
commit
add2574859
1 changed files with 14 additions and 1 deletions
|
|
@ -27,7 +27,7 @@
|
||||||
|
|
||||||
<!-- Context notification for navigation -->
|
<!-- Context notification for navigation -->
|
||||||
<v-alert
|
<v-alert
|
||||||
v-if="contextReadList"
|
v-if="contextReadList && $vuetify.breakpoint.mdAndUp"
|
||||||
type="info"
|
type="info"
|
||||||
text
|
text
|
||||||
dense
|
dense
|
||||||
|
|
@ -84,6 +84,19 @@
|
||||||
</toolbar-sticky>
|
</toolbar-sticky>
|
||||||
|
|
||||||
<v-container fluid class="pa-6">
|
<v-container fluid class="pa-6">
|
||||||
|
<!-- Context notification for navigation -->
|
||||||
|
<v-row>
|
||||||
|
<v-alert
|
||||||
|
v-if="contextReadList && $vuetify.breakpoint.smAndDown"
|
||||||
|
type="info"
|
||||||
|
text
|
||||||
|
dense
|
||||||
|
border="right"
|
||||||
|
class="mb-0"
|
||||||
|
>{{ $t('browse_book.navigation_within_readlist', {name: contextName}) }}
|
||||||
|
</v-alert>
|
||||||
|
</v-row>
|
||||||
|
|
||||||
<v-row>
|
<v-row>
|
||||||
<v-col cols="4" sm="4" md="auto" lg="auto" xl="auto">
|
<v-col cols="4" sm="4" md="auto" lg="auto" xl="auto">
|
||||||
<item-card
|
<item-card
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue