39 lines
600 B
Vue
39 lines
600 B
Vue
<template>
|
|
<div
|
|
class="flex row items-center no-wrap logo-component"
|
|
>
|
|
<img
|
|
src="src/assets/logo.svg"
|
|
style="height: 24px; max-width: 24px; padding-right: 4px;"
|
|
/>
|
|
|
|
<span
|
|
class="text-brand"
|
|
style="margin-right: 0.05em;"
|
|
>
|
|
tg
|
|
</span>
|
|
|
|
<span class="text-brand text-bold">
|
|
Crew
|
|
</span>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.logo-component {
|
|
svg {
|
|
width: 1em;
|
|
height: 1em;
|
|
margin-right: 0.125em;
|
|
}
|
|
|
|
span {
|
|
line-height: 1;
|
|
}
|
|
}
|
|
</style>
|