mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-04 04:23:01 +00:00
c20bbd795c
- try to imitate Google's design of things it makes UI look declattered -
25 lines
428 B
Vue
25 lines
428 B
Vue
<template>
|
|
<div id="logo-container"
|
|
>
|
|
<router-link :to="{ name: 'Home' }">
|
|
<div id="logo"></div
|
|
></router-link>
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss">
|
|
@import "../assets/scss/mixins.scss";
|
|
|
|
#logo-container {
|
|
overflow: hidden;
|
|
}
|
|
|
|
#logo {
|
|
height: 4.5rem !important;
|
|
background-image: url(./../assets/images/logo.webp);
|
|
background-size: contain;
|
|
@include ximage;
|
|
border-radius: $medium;
|
|
}
|
|
</style>
|