use v-auto-animate small parts of the UI

This commit is contained in:
geoffrey45
2022-09-30 10:14:45 +03:00
committed by Mungai Njoroge
parent 52cec1d906
commit 446536f2d8
20 changed files with 37 additions and 76 deletions
+4 -4
View File
@@ -1,20 +1,20 @@
<template>
<div class="l-sidebar noscroll">
<div v-auto-animate class="l-sidebar noscroll">
<div class="withlogo">
<Logo />
<Navigation />
</div>
<NPImg v-if="settings.use_np_img" />
<NowPlayingImage v-if="settings.use_np_img" />
</div>
</template>
<script setup lang="ts">
import Navigation from "@/components/LeftSidebar/Navigation.vue";
import NPImg from "./NowPlayingImg.vue";
import NowPlayingImage from "./NowPlayingImg.vue";
import Logo from "@/components/Logo.vue";
import useSettingsStore from "@/stores/settings";
const settings = useSettingsStore();
</script>
</script>