Skip to content

Commit

Permalink
fix(webui): better display of readlist context information for small …
Browse files Browse the repository at this point in the history
…screen

closes #791
  • Loading branch information
gotson committed Feb 4, 2022
1 parent 8bd36b4 commit add2574
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion komga-webui/src/views/BrowseBook.vue
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

<!-- Context notification for navigation -->
<v-alert
v-if="contextReadList"
v-if="contextReadList && $vuetify.breakpoint.mdAndUp"
type="info"
text
dense
Expand Down Expand Up @@ -84,6 +84,19 @@
</toolbar-sticky>

<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-col cols="4" sm="4" md="auto" lg="auto" xl="auto">
<item-card
Expand Down

0 comments on commit add2574

Please sign in to comment.