fix ArtistName component width calculation in vTooltip

+ add tracklist breakpoints to virtual scroll page layout
This commit is contained in:
geoffrey45
2022-09-24 09:14:15 +03:00
committed by Mungai Njoroge
parent 1c3998aa25
commit 61750f7126
6 changed files with 78 additions and 42 deletions
+5 -2
View File
@@ -28,7 +28,11 @@
</div>
<hr />
<div class="artist">
<ArtistName :artists="track.artist" :albumartist="track.albumartist" />
<ArtistName
:artists="track.artist"
:albumartist="track.albumartist"
:smaller="true"
/>
</div>
</div>
<div
@@ -140,7 +144,6 @@ const playThis = (track: Track) => {
}
.artist {
font-size: small;
opacity: 0.67;
width: fit-content;
}