website/app/components/AppLogo.vue

13 lines
175 B
Vue
Raw Permalink Normal View History

2026-05-12 21:05:12 +02:00
<template>
2026-05-13 03:19:37 +02:00
<img
src="/spbr-coloured.png"
alt="Spacebar Logo"
2026-05-13 01:04:57 +02:00
class="h-10 w-auto object-contain"
2026-05-13 03:19:37 +02:00
>
2026-05-12 21:05:12 +02:00
</template>
2026-05-13 01:04:57 +02:00
<style scoped>
img {
2026-05-13 03:19:37 +02:00
height: 40px;
2026-05-13 01:04:57 +02:00
}
2026-05-13 03:19:37 +02:00
</style>