jukebox/src/renderer/components/Logo.vue

23 lines
324 B
Vue

<template>
<span>
<img src="/static/logo-2.svg" alt="Jukebox">
Jukebox.
</span>
</template>
<script>
export default {
name: 'Logo'
}
</script>
<style lang="sass" scoped>
span
margin-bottom: 12px
font-size: 1.5rem
color: lighten(black,40)
img
width: 24px
height: auto
</style>