mirror of
https://github.com/gotson/komga.git
synced 2025-12-20 23:45:11 +01:00
fix: incorrect placeholder card height on xs and sm screens
This commit is contained in:
parent
2ca304847e
commit
0f50a7690f
2 changed files with 2 additions and 2 deletions
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Reference in a new issue