Skip to content

Commit e5ecc9a

Browse files
SnaveSutitgitbutler-client
authored andcommitted
✨ Add bisect hosting banner to Blueprint settings.
1 parent 77f756c commit e5ecc9a

5 files changed

Lines changed: 275 additions & 230 deletions

File tree

153 KB
Loading

src/components/kofiPopup.svelte renamed to src/components/blueprintSettingsAds.svelte

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<script lang="ts" context="module">
2+
import BisectHostingBanner from '../assets/banners/bisect-hosting-promo-banner.png'
23
import HeartIcon from '../assets/heart.png'
34
import KoFiImage from '../assets/kofi_tag_white.webp'
45
@@ -48,7 +49,37 @@
4849
</div>
4950
{/if}
5051

52+
<div>
53+
<div class="bisect-hosting-banner-container">
54+
<a href="https://www.bisecthosting.com/animated-java">
55+
<img class="bisect-hosting-banner" src={BisectHostingBanner} alt="" />
56+
</a>
57+
</div>
58+
</div>
59+
5160
<style>
61+
.bisect-hosting-banner-container {
62+
position: absolute;
63+
left: 0;
64+
text-align: center;
65+
margin-left: auto;
66+
margin-right: auto;
67+
right: 0;
68+
width: 75%;
69+
margin-top: 4px;
70+
}
71+
.bisect-hosting-banner {
72+
width: 100%;
73+
border-radius: 8px;
74+
vertical-align: middle;
75+
image-rendering: auto;
76+
transition: transform 0.2s ease;
77+
}
78+
.bisect-hosting-banner:hover {
79+
transform: scale(1.02);
80+
transition: transform 0.2s ease;
81+
}
82+
5283
i {
5384
cursor: pointer;
5485
height: fit-content;

0 commit comments

Comments
 (0)