mirror of https://github.com/elk-zone/elk.git
24 lines
352 B
Vue
24 lines
352 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>
|