mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-03 20:13:02 +00:00
7f344b51db
+ fix context menu not being normalized + fix nav bar padding-right on no sidebar
20 lines
477 B
Vue
20 lines
477 B
Vue
<template>
|
|
<div class="l-sidebar no-scroll">
|
|
<div class="withlogo">
|
|
<Logo />
|
|
<Navigation />
|
|
</div>
|
|
|
|
<NowPlayingImage v-if="settings.use_np_img" />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import Navigation from "@/components/LeftSidebar/Navigation.vue";
|
|
import Logo from "@/components/Logo.vue";
|
|
import NowPlayingImage from "./NowPlayingImg.vue";
|
|
|
|
import useSettingsStore from "@/stores/settings";
|
|
|
|
const settings = useSettingsStore();
|
|
</script> |