diff --git a/src/assets/css/global.scss b/src/assets/css/global.scss index 543e43f0..54713d24 100644 --- a/src/assets/css/global.scss +++ b/src/assets/css/global.scss @@ -99,7 +99,7 @@ a { .l-sidebar { width: 17rem; grid-area: l-sidebar; - background-color: $black; + background-color: $gray; margin: $small; padding: 1rem; } diff --git a/src/components/FolderView/SongList.vue b/src/components/FolderView/SongList.vue index 56cf2540..0c75f344 100644 --- a/src/components/FolderView/SongList.vue +++ b/src/components/FolderView/SongList.vue @@ -84,7 +84,7 @@ function updateQueue(track: Track) { .table { width: 100%; height: 100%; - overflow-y: auto; + overflow-y: hidden; .current { a { @@ -141,6 +141,10 @@ function updateQueue(track: Track) { } .songlist { + scrollbar-width: none; + &::-webkit-scrollbar { + display: none; + } .context-on { background-color: $gray4; color: $white !important; diff --git a/src/components/LeftSidebar/NP/Progress.vue b/src/components/LeftSidebar/NP/Progress.vue index d216839c..2abfbbdb 100644 --- a/src/components/LeftSidebar/NP/Progress.vue +++ b/src/components/LeftSidebar/NP/Progress.vue @@ -4,7 +4,7 @@ type="range" :value="q.track.current_time" min="0" - :max="q.track.duration" + max="100" step="0.1" @change="seek()" /> diff --git a/src/components/LeftSidebar/Navigation.vue b/src/components/LeftSidebar/Navigation.vue index 2c1e378e..210167cb 100644 --- a/src/components/LeftSidebar/Navigation.vue +++ b/src/components/LeftSidebar/Navigation.vue @@ -5,7 +5,12 @@ :key="menu.name" :to="{ name: menu.route_name, params: menu.params }" > -