Added icon change
All checks were successful
Build and Deploy Nuxt / build (push) Successful in 39s

This commit is contained in:
2026-04-26 21:12:08 +02:00
parent 9048bb0f11
commit 475887420c
20 changed files with 668 additions and 41 deletions

View File

@@ -0,0 +1,24 @@
<script setup>
const config = useRuntimeConfig()
</script>
<template>
<div class="version-render">
<span>Dragonroll {{ config.public.gitTag }}-{{ config.public.gitCommit }}@{{ config.public.gitBranch }}</span>
<br><span>{{ config.public.buildDate }}</span>
</div>
</template>
<style scoped>
.version-render {
position: absolute;
bottom: 0;
left: 0;
user-select: none;
}
span{
color: rgb(59, 59, 59);
}
</style>