mirror of
https://github.com/ivabus/gui
synced 2025-04-23 14:07:14 +03:00
bump v0.0.49: test new release cdn
This commit is contained in:
parent
bb1b4c02bd
commit
349a2529f2
2 changed files with 31 additions and 3 deletions
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "tea",
|
||||
"version": "0.0.48",
|
||||
"version": "0.0.49",
|
||||
"private": true,
|
||||
"description": "tea gui app",
|
||||
"author": "tea.xyz",
|
||||
|
|
|
@ -66,7 +66,7 @@
|
|||
class:animate-pulse={!pkg.thumb_image_url}
|
||||
/>
|
||||
<div
|
||||
class="bg-center opacity-0 transition-all duration-500"
|
||||
class="opacity-0 transition-all duration-500 {layout}"
|
||||
class:opacity-100={loaded}
|
||||
style="background-image: url({loadedImg})"
|
||||
>
|
||||
|
@ -76,7 +76,7 @@
|
|||
class="blur-sm {layout} opacity-0 transition-all duration-500"
|
||||
class:opacity-100={loaded}
|
||||
>
|
||||
<figure class="bg-center" style="background-image: url({loadedImg})" />
|
||||
<figure class={layout} style="background-image: url({loadedImg})" />
|
||||
</aside>
|
||||
{/if}
|
||||
</div>
|
||||
|
@ -122,6 +122,19 @@
|
|||
background-size: cover;
|
||||
box-sizing: border-box;
|
||||
background-repeat: no-repeat;
|
||||
background-position: 50% 50%;
|
||||
}
|
||||
|
||||
div.left {
|
||||
background-position: 200px 50%;
|
||||
}
|
||||
div.right {
|
||||
background-repeat: repeat;
|
||||
background-position: -250px 50%;
|
||||
}
|
||||
div.bottom {
|
||||
background-repeat: repeat;
|
||||
background-position: 50% -70px;
|
||||
}
|
||||
aside {
|
||||
position: absolute;
|
||||
|
@ -153,6 +166,21 @@
|
|||
height: 338px;
|
||||
background-size: cover;
|
||||
background-repeat: no-repeat;
|
||||
background-position: 50% 50%;
|
||||
}
|
||||
|
||||
figure.left {
|
||||
background-repeat: repeat;
|
||||
background-position: 200px 50%;
|
||||
}
|
||||
|
||||
figure.right {
|
||||
background-repeat: repeat;
|
||||
background-position: -250px 50%;
|
||||
}
|
||||
figure.bottom {
|
||||
background-repeat: repeat;
|
||||
background-position: 50% -70px;
|
||||
}
|
||||
|
||||
aside.bottom figure {
|
||||
|
|
Loading…
Reference in a new issue