Skip to content

Commit 293e95c

Browse files
committed
disable wide artist header by default
1 parent 302095e commit 293e95c

3 files changed

Lines changed: 10 additions & 5 deletions

File tree

src/components/BottomBar/Left.vue

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,12 +101,19 @@ defineEmits<{
101101
align-items: center;
102102
justify-content: center;
103103
opacity: 0;
104-
transition: opacity 0.2s;
104+
transition: all 0.2s;
105105
106106
svg {
107107
transform: rotate(-90deg);
108108
}
109109
}
110+
111+
&:hover {
112+
.expandicon {
113+
transform: translateY(-$medium);
114+
height: 130%;
115+
}
116+
}
110117
}
111118
112119
a {

src/components/BottomBar/Right.vue

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<template>
22
<div class="right-group">
3-
<LyricsButton v-if="settings.use_lyrics_plugin || lyrics.exists" />
3+
<LyricsButton />
44
<Volume />
55
<button
66
class="repeat"
@@ -32,7 +32,6 @@
3232
<script setup lang="ts">
3333
import useQueue from "@/stores/queue";
3434
import useSettings from "@/stores/settings";
35-
import useLyrics from "@/stores/lyrics";
3635
3736
import Volume from "./Volume.vue";
3837
import HeartSvg from "../shared/HeartSvg.vue";
@@ -42,7 +41,6 @@ import RepeatOneSvg from "@/assets/icons/repeat-one.svg";
4241
import ShuffleSvg from "@/assets/icons/shuffle.svg";
4342
4443
const queue = useQueue();
45-
const lyrics = useLyrics();
4644
const settings = useSettings();
4745
4846
defineProps<{

src/stores/settings/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export default defineStore("settings", {
3232
separators: <string[]>[],
3333

3434
// client
35-
useCircularArtistImg: false,
35+
useCircularArtistImg: true,
3636

3737
// plugins
3838
use_lyrics_plugin: <boolean | undefined>false,

0 commit comments

Comments
 (0)