Files
swingmusic-extended/src/components/Logo.vue
T
geoffrey45 a99ea78118 animate navigation list and logo
- move search main into right-sidebar > search
-
2022-05-25 16:36:04 +03:00

26 lines
461 B
Vue

<template>
<div id="logo-container"
v-motion-slide-from-top
>
<router-link :to="{ name: 'Home' }">
<div id="logo" class="rounded"></div
></router-link>
</div>
</template>
<style lang="scss">
@import "../assets/css/mixins.scss";
#logo-container {
overflow: hidden;
}
#logo {
height: 4.5rem !important;
width: 15rem;
background-image: url(./../assets/images/logo.webp);
background-size: contain;
@include ximage;
}
</style>