Skip to content

Commit 2ac8f5b

Browse files
committed
🚧 Add Ko-Fi supporters to about page
1 parent fb7bf44 commit 2ac8f5b

File tree

2 files changed

+29
-4
lines changed

2 files changed

+29
-4
lines changed

package.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,13 @@
2222
"url": "https://discordapp.com/users/749826119636615229"
2323
}
2424
],
25+
"subscription_supporters": [
26+
"123yeah_boi321",
27+
"alumina6767",
28+
"LadyCailin",
29+
"VonLeipenstein",
30+
"Zoe"
31+
],
2532
"special_thanks": [
2633
"Howzieky",
2734
"MulverineX",
@@ -50,7 +57,6 @@
5057
"CommanderRedstone",
5158
"FabulousCodingFox",
5259
"ououn",
53-
"123yeah_boi321",
5460
"luigiutmc"
5561
],
5662
"repository": {

src/components/about.svelte

Lines changed: 22 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,14 @@
7575
<p>For showing off the power of AJ with his boss fights.</p>
7676
</div>
7777
</div>
78+
79+
<h4>Ko-fi Supporters</h4>
80+
<div class="grid2">
81+
{#each PACKAGE.subscription_supporters.sort() as special}
82+
<p>{special}</p>
83+
{/each}
84+
</div>
85+
7886
<h4>Cool People who helped make AJ what it is today</h4>
7987
<div class="grid2">
8088
{#each PACKAGE.special_thanks.sort() as special}
@@ -88,14 +96,14 @@
8896
display: flex;
8997
flex-direction: column;
9098
align-items: center;
91-
/* overflow-y: scroll;
99+
overflow-y: scroll;
92100
max-height: 55rem;
93-
padding-right: 16px; */
101+
padding-right: 16px;
94102
}
95103
.header-container {
96104
display: flex;
97105
align-items: center;
98-
margin-bottom: 2rem;
106+
margin-bottom: 1.5rem;
99107
}
100108
.header-container div {
101109
display: flex;
@@ -186,5 +194,16 @@
186194
display: grid;
187195
grid-template-columns: 1fr 1fr 1fr 1fr;
188196
justify-items: center;
197+
gap: 4px 8px;
198+
margin-bottom: 8px;
199+
}
200+
201+
.grid2 p {
202+
text-align: center;
203+
width: 100%;
204+
box-shadow: 2px 2px 4px var(--color-back);
205+
background: var(--color-button);
206+
padding: 0px 4px;
207+
border-radius: 4px;
189208
}
190209
</style>

0 commit comments

Comments
 (0)