fix indices on album page

+ fix playing on album page
+ fix songItem responsiveness on all virtual scroll pages
This commit is contained in:
geoffrey45
2022-10-08 15:16:34 +03:00
committed by Mungai Njoroge
parent 9cde9d0aa4
commit f0df274b31
9 changed files with 97 additions and 46 deletions
+40 -10
View File
@@ -54,16 +54,6 @@ $g-border: solid 1px $gray5;
padding-right: calc(1rem - $small + 2px);
}
.v-scroll-page {
width: calc(100% + $medium) !important;
.scroller {
height: 100%;
width: 100%;
padding-right: $small !important;
}
}
// ====== MODIFIERS =======
#app-grid.extendWidth {
@@ -95,3 +85,43 @@ $g-border: solid 1px $gray5;
border-right: none;
border-left: none;
}
.v-scroll-page {
width: calc(100% + $medium) !important;
.scroller {
height: 100%;
width: 100%;
padding-right: $small !important;
}
}
.v-scroll-page.isSmall {
// hide album and artists columns
.songlist-item {
grid-template-columns: 1.5rem 2fr 2.5rem 2.5rem;
}
.song-artists,
.song-album {
display: none !important;
}
.isSmallArtists {
display: unset !important;
font-size: small;
color: $white;
opacity: 0.67;
}
}
.v-scroll-page.isMedium {
// hide album column
.songlist-item {
grid-template-columns: 1.5rem 1.5fr 1fr 2.5rem 2.5rem;
}
.song-album {
display: none !important;
}
}