elk/docs/components/global/Logo.vue

24 lines
356 B
Vue
Raw Normal View History

2023-01-08 22:42:59 +01:00
<template>
<div class="logo">
<img alt="Elk" src="/logo.svg">
Elk
</div>
</template>
<style lang="ts" scoped>
css({
'.logo': {
display: 'flex',
flexDirection: 'row',
alignItems: 'center',
gap: '0.5rem',
fontSize: '1.5rem',
},
'img': {
2023-01-08 22:42:59 +01:00
flexShrink: 0,
aspectRatio: '1/1',
height: '2.5rem',
},
2023-01-08 22:42:59 +01:00
})
</style>