vuetify-rework (#2)

See #2.

Co-authored-by: vikingowl <christian@nachtigall.dev>
Reviewed-on: #2
Reviewed-by: anonfunc <539@idlegandalf.com>
Co-authored-by: vikingowl <vikingowl@noreply.somegit.dev>
Co-committed-by: vikingowl <vikingowl@noreply.somegit.dev>
This commit is contained in:
2024-01-24 16:11:55 +01:00
committed by anonfunc
parent 92d9d478b5
commit db80961ea4
28 changed files with 2135 additions and 430 deletions

View File

@@ -0,0 +1,26 @@
<script lang="ts" setup>
import BuildStats from '@/components/BuildStats.vue'
</script>
<template>
<v-app-bar color="#191c2a" style="background: #0d1538">
<v-app-bar-title style="margin-left: 0 !important">
<span style="font-size: 20px">
ALHP Status
<a
class="ms-2"
href="https://somegit.dev/ALHP/ALHP.GO"
style="color: white; font-size: 25px"
target="_blank">
<i class="fa fa-gitea"></i>
</a>
</span>
</v-app-bar-title>
<template v-slot:append>
<build-stats />
</template>
</v-app-bar>
</template>
<style scoped></style>