mirror of
https://github.com/gotson/komga.git
synced 2026-04-18 13:02:04 +02: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"
|
<v-skeleton-loader v-for="(s, i) in series"
|
||||||
:key="i"
|
:key="i"
|
||||||
:width="cardWidth"
|
:width="cardWidth"
|
||||||
height="306.14"
|
:height="cardWidth / .7071 + 94"
|
||||||
justify-self="start"
|
justify-self="start"
|
||||||
:loading="s === null"
|
:loading="s === null"
|
||||||
type="card, text"
|
type="card, text"
|
||||||
|
|
|
||||||
|
|
@ -70,7 +70,7 @@
|
||||||
<v-skeleton-loader v-for="(b, i) in books"
|
<v-skeleton-loader v-for="(b, i) in books"
|
||||||
:key="i"
|
:key="i"
|
||||||
:width="cardWidth"
|
:width="cardWidth"
|
||||||
height="328.13"
|
:height="cardWidth / .7071 + 116"
|
||||||
justify-self="start"
|
justify-self="start"
|
||||||
:loading="b === null"
|
:loading="b === null"
|
||||||
type="card, text"
|
type="card, text"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue