Skip to content

Commit e718266

Browse files
committed
fix: fix uptime bars not working
1 parent c63e621 commit e718266

File tree

2 files changed

+9
-13
lines changed

2 files changed

+9
-13
lines changed

src/pages/index.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,15 +85,15 @@ function handleKeyPress(event: KeyboardEvent) {
8585
<div class="flex flex-wrap justify-center gap-8">
8686
<a href="https://playonvector.com/" class="flex bg-vector-green rounded px-6 py-2 gap-2">
8787
<Icon icon="akar-icons:globe" class="text-2xl text-primary" />
88-
<p>Website</p>
88+
<p class="text-white">Website</p>
8989
</a>
9090
<a href="https://x.com/playonvector/" class="flex bg-vector-green rounded px-6 py-2 gap-2">
9191
<Icon icon="akar-icons:x-fill" class="text-2xl text-primary" />
92-
<p>Twitter</p>
92+
<p class="text-white">Twitter</p>
9393
</a>
9494
<a href="https://discord.gg/r5JacJAt" class="flex bg-vector-green rounded px-6 py-2 gap-2">
9595
<Icon icon="akar-icons:discord-fill" class="text-2xl text-primary" />
96-
<p>Discord</p>
96+
<p class="text-white">Discord</p>
9797
</a>
9898
</div>
9999
</div>

tailwind.config.js

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,23 +8,19 @@ module.exports = {
88
'vector': "url('/src/assets/vector.svg')",
99
},
1010
colors: {
11-
primary: '#9cd3b8',
12-
bg: '#293330',
13-
orange: '#fa7327',
14-
}
15-
},
16-
boxShadow: {
17-
'vector': '4px 0px 9px 0px rgba(0, 0, 0, 0.25)',
18-
},
19-
colors: {
2011
vector: {
2112
primary: '#9cd3b8',
2213
bg: 'rgb(0,0,0,0.39)',
2314
green: 'rgb(41, 51, 48)',
2415
orange: '#fa7327',
2516
gray: 'rgba(255, 255, 255, 0.45)',
2617
}
27-
}
18+
},
19+
},
20+
boxShadow: {
21+
'vector': '4px 0px 9px 0px rgba(0, 0, 0, 0.25)',
22+
},
23+
2824
},
2925
plugins: [require('daisyui')],
3026
daisyui: {

0 commit comments

Comments
 (0)