fix album and playlist page tracklist height

- make containers height: 100%
This commit is contained in:
geoffrey45
2022-05-29 13:11:50 +03:00
parent 48bc4de569
commit 94504a1575
2 changed files with 3 additions and 0 deletions
+1
View File
@@ -40,6 +40,7 @@ onBeforeRouteUpdate(async (to) => {
<style lang="scss">
.al-view {
scrollbar-width: none;
height: 100%;
.songs {
min-height: calc(100% - 31.5rem);
+2
View File
@@ -38,6 +38,8 @@ const playlist = usePTrackStore();
<style lang="scss">
.playlist-view {
height: 100%;
&::-webkit-scrollbar {
display: none;
}