a simple web player for subsonic tinysub.devins.page
subsonic navidrome javascript
11
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: styling

+5 -4
+2 -2
src/lib/Queue.svelte
··· 153 153 <div class="body"> 154 154 <VirtualList 155 155 items={queue.tracks} 156 - itemHeight={Math.max(18, settings.artSong + 2)} 156 + itemHeight={Math.max(19, settings.artSong + 2)} 157 157 // +2 for 1px padding top and bottom around icon 158 158 bind:scrollToIndex 159 159 > ··· 167 167 class:odd={index % 2 !== 0} 168 168 class:over-a={drag?.index === index && !drag.isAfter} 169 169 class:over-b={drag?.index === index && drag.isAfter} 170 - style="block-size: {Math.max(18, settings.artSong + 2)}px;" 170 + style="block-size: {Math.max(19, settings.artSong + 2)}px;" 171 171 // +2 for 1px padding top and bottom around icon 172 172 draggable={true} 173 173 ondragstart={(e) => onDragStart(e, index)}
+3 -2
src/lib/TreeItem.svelte
··· 386 386 } 387 387 .main { 388 388 flex: 1; 389 + overflow: hidden; 389 390 padding: 0rem; 390 391 gap: 0.5rem; 391 392 } ··· 430 431 } 431 432 .badge { 432 433 position: absolute; 433 - inset-block-end: -4px; 434 - inset-inline-end: -4px; 434 + inset-block-end: 0; 435 + inset-inline-end: 0; 435 436 } 436 437 img { 437 438 display: block;