mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-04 12:33:03 +00:00
a99ea78118
- move search main into right-sidebar > search -
26 lines
461 B
Vue
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>
|