diff --git a/src/components/LeftSidebar/nowPlaying.vue b/src/components/LeftSidebar/nowPlaying.vue index 76a7cc1..f0781de 100644 --- a/src/components/LeftSidebar/nowPlaying.vue +++ b/src/components/LeftSidebar/nowPlaying.vue @@ -57,6 +57,8 @@ const props = defineProps({ position: absolute; background-size: 1.5rem; top: $small; + cursor: pointer; + transition: all 200ms; &:hover { background-color: $gray2; @@ -67,6 +69,10 @@ const props = defineProps({ right: $small; background-image: url("../../assets/icons/right-arrow.svg"); transform: rotate(90deg); + + &:hover { + transform: rotate(0deg); + } } br { diff --git a/src/components/contextMenu.vue b/src/components/contextMenu.vue index 9e842dd..3773104 100644 --- a/src/components/contextMenu.vue +++ b/src/components/contextMenu.vue @@ -25,11 +25,7 @@
{{ option.label }}
-
+
{{ child.label }}
@@ -46,8 +42,6 @@ const context = useContextStore();