Skip to content
This repository was archived by the owner on Jan 15, 2025. It is now read-only.

Commit 39d4019

Browse files
authored
replace loader (#819)
* replace tea logo
1 parent 41905ca commit 39d4019

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ossapp",
3-
"version": "0.3.4",
3+
"version": "0.3.5",
44
"private": true,
55
"description": "The Open Source App Store",
66
"author": "pkgx inc. <[email protected]>",

svelte/src/components/package-card/bg-image.svelte

+5-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,11 @@
1717

1818
<section class="overflow-hidden bg-black {clazz} {layout}">
1919
{#await promise}
20-
<i class="logo icon-tea-logo-iconasset-1 text-gray text-3xl {layout} animate-pulse" />
20+
<img
21+
src="/images/home-btn/State=Active.svg"
22+
class="logo animate-pulse grayscale {layout}"
23+
alt="ossapp"
24+
/>
2125
{:then loadedImg}
2226
<div class="transition-all duration-500 {layout}" style="background-image: url({loadedImg})">
2327
<!-- dup image: save processing power instead of computing the blur across all the HTML layers -->
@@ -39,7 +43,6 @@
3943
.logo {
4044
position: absolute;
4145
width: 30px;
42-
height: 30px;
4346
margin-left: -15px;
4447
}
4548
.logo.none {

svelte/src/components/preloader/preloader.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
</script>
66

77
<figure class="container flex h-full w-full flex-row justify-center bg-black bg-opacity-90 py-8">
8-
<i class="icon-tea-logo-iconasset-1 text-gray animate-pulse text-4xl" />
8+
<img src="/images/home-btn/State=Active.svg" class="animate-pulse grayscale" alt="ossapp" />
99
</figure>
1010

1111
<style>

0 commit comments

Comments
 (0)