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

Configure Feed

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

Css fixes

+16 -4
+1 -2
src/Applications/UI.elm
··· 1405 1405 , T.flex 1406 1406 , T.flex_column 1407 1407 , T.flex_grow_1 1408 - , T.overflow_scroll 1408 + , T.overflow_hidden 1409 1409 , T.relative 1410 1410 ] 1411 1411 ) ··· 1510 1510 vesselInnerStyles : List Css.Style 1511 1511 vesselInnerStyles = 1512 1512 [ Css.property "-webkit-mask-image" "-webkit-radial-gradient(white, black)" 1513 - , Css.property "-webkit-overflow-scrolling" "touch" 1514 1513 ]
+7 -1
src/Applications/UI/Console.elm
··· 84 84 ----------------------------------------- 85 85 , brick 86 86 [ css buttonsContainerStyles ] 87 - [ T.flex, T.justify_center, T.mb2, T.mt3, T.pb1 ] 87 + [ T.flex 88 + , T.justify_between 89 + , T.justify_center_ns 90 + , T.mb2 91 + , T.mt3 92 + , T.pb1 93 + ] 88 94 [ button (smallLight repeat) (icon Icons.repeat 18) (QueueMsg <| Queue.ToggleRepeat) 89 95 , button lightPlaceHolder (icon Icons.fast_rewind 20) (QueueMsg <| Queue.Rewind) 90 96 , button (largeLight isPlaying) play PlayPause
+7 -1
src/Applications/UI/Kit.elm
··· 405 405 406 406 receptacle : List (Html msg) -> Html msg 407 407 receptacle = 408 - chunk 408 + brick 409 + [ css 410 + [ Css.property "-webkit-overflow-scrolling" "touch" ] 411 + ] 409 412 [ T.absolute 410 413 , T.absolute__fill 411 414 , T.bg_white 412 415 , T.flex 413 416 , T.flex_column 417 + , T.overflow_x_hidden 418 + , T.overflow_y_scroll 414 419 , T.z_999 415 420 ] 416 421 ··· 480 485 (css textFieldStyles :: attributes) 481 486 [ T.bn 482 487 , T.bg_transparent 488 + , T.br0 483 489 , T.db 484 490 , T.f6 485 491 , T.lh_copy
+1
src/Applications/UI/Sources/Form.elm
··· 570 570 [ onSubmit msg ] 571 571 [ T.flex 572 572 , T.flex_grow_1 573 + , T.flex_shrink_0 573 574 , T.tc 574 575 ] 575 576 [ UI.Kit.centeredContent html ]