Compare commits

..

2 Commits

Author SHA1 Message Date
mungai-njoroge
293e95c5b0 disable wide artist header by default 2024-02-25 23:53:28 +03:00
Mungai Njoroge
302095ef80 v1.4.8 - No Sidebar Layout 2024-02-16 22:05:05 +03:00
3 changed files with 10 additions and 5 deletions

View File

@@ -101,12 +101,19 @@ defineEmits<{
align-items: center;
justify-content: center;
opacity: 0;
transition: opacity 0.2s;
transition: all 0.2s;
svg {
transform: rotate(-90deg);
}
}
&:hover {
.expandicon {
transform: translateY(-$medium);
height: 130%;
}
}
}
a {

View File

@@ -1,6 +1,6 @@
<template>
<div class="right-group">
<LyricsButton v-if="settings.use_lyrics_plugin || lyrics.exists" />
<LyricsButton />
<Volume />
<button
class="repeat"
@@ -32,7 +32,6 @@
<script setup lang="ts">
import useQueue from "@/stores/queue";
import useSettings from "@/stores/settings";
import useLyrics from "@/stores/lyrics";
import Volume from "./Volume.vue";
import HeartSvg from "../shared/HeartSvg.vue";
@@ -42,7 +41,6 @@ import RepeatOneSvg from "@/assets/icons/repeat-one.svg";
import ShuffleSvg from "@/assets/icons/shuffle.svg";
const queue = useQueue();
const lyrics = useLyrics();
const settings = useSettings();
defineProps<{

View File

@@ -32,7 +32,7 @@ export default defineStore("settings", {
separators: <string[]>[],
// client
useCircularArtistImg: false,
useCircularArtistImg: true,
// plugins
use_lyrics_plugin: <boolean | undefined>false,