mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-08 09:59:59 +00:00
9da77637b2
Co-authored-by: Anthony Fu <anthonyfu117@hotmail.com>
24 lines
356 B
Vue
24 lines
356 B
Vue
<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': {
|
|
flexShrink: 0,
|
|
aspectRatio: '1/1',
|
|
height: '2.5rem',
|
|
},
|
|
})
|
|
</style>
|