A music player that connects to your cloud/distributed storage.
5
fork

Configure Feed

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

Add a bit more padding on condensed view

+14 -13
+14 -13
src/Applications/UI/Tracks/Scene/Covers.elm
··· 295 295 cover 296 296 297 297 -- 298 - , chunk 299 - [ C.flex_auto 300 - , C.flex_basis_0 301 - , C.overflow_hidden 302 - , C.select_none 303 - 304 - -- 305 - , ifThenElse condensedView C.neg_mx_5 C.mx_5 306 - , ifThenElse condensedView C.px_1 C.px_0 307 - ] 308 - (List.indexedMap 298 + , cover.tracks 299 + |> List.indexedMap 309 300 (UI.Tracks.Scene.List.defaultItemView 310 301 { derivedColors = derivedColors 311 302 , favouritesOnly = deps.favouritesOnly ··· 318 309 } 319 310 0 320 311 ) 321 - cover.tracks 322 - ) 312 + |> chunk 313 + [ ifThenElse condensedView C.px_px C.px_0 ] 314 + |> chunky 315 + [ C.flex_auto 316 + , C.flex_basis_0 317 + , C.overflow_hidden 318 + , C.select_none 319 + 320 + -- 321 + , ifThenElse condensedView C.neg_mx_5 C.mx_5 322 + , ifThenElse condensedView C.px_1 C.px_0 323 + ] 323 324 ] 324 325 ] 325 326