Update footer

This commit is contained in:
Matt Isenhower 2022-04-24 12:14:18 -07:00
parent 096898c24e
commit 74c8ccf491
4 changed files with 28 additions and 9 deletions

View File

@ -3,7 +3,7 @@
@tailwind utilities; @tailwind utilities;
body { body {
@apply text-slate-100; @apply text-gray-100;
@apply bg-black; @apply bg-black;
background-image: url('@/assets/information-bg.jpg'); background-image: url('@/assets/information-bg.jpg');
background-size: 50%; background-size: 50%;

BIN
src/assets/little-buddy.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.0 KiB

View File

@ -8,14 +8,23 @@
</div> </div>
</div> </div>
<div class="m-2 text-center text-sm text-slate-300"> <div class="m-2 text-center text-xs text-gray-500">
<a href="https://splatoon2.ink" target="_blank"> <div>
splatoon2.ink <img src="@/assets/little-buddy.png" class="mx-auto mb-4" width="50" />
</a> </div>
&ndash; <div>
<a href="https://twitter.com/splatoon2inkbot" target="_blank"> This website is not affiliated with Nintendo. All product names, logos, and brands are property of their respective owners.
@splatoon2inkbot </div>
</a> <div class="footer-links">
<a href="https://twitter.com/splatoon2inkbot" target="_blank">
<img src="@/assets/twitter-white.png" width="20" height="20" class="inline" />
<span>@splatoon2inkbot</span>
</a>
&ndash;
<a href="https://splatoon2.ink" target="_blank">
<span>splatoon2.ink</span>
</a>
</div>
</div> </div>
</main> </main>
</template> </template>
@ -23,3 +32,13 @@
<script setup> <script setup>
import Splatoon3Countdown from '@/components/Splatoon3Countdown.vue' import Splatoon3Countdown from '@/components/Splatoon3Countdown.vue'
</script> </script>
<style scoped>
.footer-links a span {
@apply text-gray-300;
}
.footer-links a:hover span {
@apply text-white underline;
}
</style>