mirror of
https://github.com/ThaUnknown/miru.git
synced 2026-03-20 15:17:34 +00:00
21 lines
630 B
Svelte
21 lines
630 B
Svelte
<div class='d-flex p-20 wrapper content-visibility-auto'>
|
|
<div class='item d-flex flex-column h-full'>
|
|
<div class='img w-full rounded skeloader bg-dark-light'><div class='skeleloader-swipe' /></div>
|
|
<div class='skeloader rounded bg-dark-light h-10 w-150 mt-15'><div class='skeleloader-swipe' /></div>
|
|
<div class='skeloader rounded bg-dark-light h-10 w-100 mt-15'><div class='skeleloader-swipe' /></div>
|
|
</div>
|
|
</div>
|
|
|
|
<style>
|
|
.img {
|
|
height: 27rem;
|
|
}
|
|
.item {
|
|
animation: 0.3s ease 0s 1 load-in;
|
|
width: 19rem
|
|
}
|
|
.wrapper {
|
|
height: 40.6rem;
|
|
contain-intrinsic-height: 40.6rem;
|
|
}
|
|
</style>
|