Skip to content

Commit

Permalink
fix: incorrect placeholder card height on xs and sm screens
Browse files Browse the repository at this point in the history
  • Loading branch information
gotson committed Jan 24, 2020
1 parent 2ca3048 commit 0f50a76
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion komga-webui/src/views/BrowseLibraries.vue
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
<v-skeleton-loader v-for="(s, i) in series"
:key="i"
:width="cardWidth"
height="306.14"
:height="cardWidth / .7071 + 94"
justify-self="start"
:loading="s === null"
type="card, text"
Expand Down
2 changes: 1 addition & 1 deletion komga-webui/src/views/BrowseSeries.vue
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
<v-skeleton-loader v-for="(b, i) in books"
:key="i"
:width="cardWidth"
height="328.13"
:height="cardWidth / .7071 + 116"
justify-self="start"
:loading="b === null"
type="card, text"
Expand Down

0 comments on commit 0f50a76

Please sign in to comment.