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.

Couple of cross-browser css fixes

+25 -20
+18 -17
src/App/Sources/View.elm
··· 274 274 [ cssClasses 275 275 [ InsulationFlexContent ] 276 276 , style 277 - [ ( "position", "relative" ) 277 + [ ( "overflow", "hidden" ) 278 + , ( "position", "relative" ) 278 279 , ( "width", "100%" ) 279 280 , ( "z-index", "9" ) 280 281 ] ··· 283 284 [ cssClasses 284 285 [ InsulationContent 285 286 , InsulationCentered 286 - , ContentBox 287 - ] 288 - , style 289 - [ ( "padding-top", "2.25rem" ) 290 287 ] 291 288 ] 292 - [ case step of 293 - 1 -> 294 - pageNewStep1 source step 289 + [ div 290 + [ cssClasses 291 + [ ContentBox ] 292 + , style 293 + [ ( "padding-top", "2.25rem" ) ] 294 + ] 295 + [ case step of 296 + 1 -> 297 + pageNewStep1 source step 295 298 296 - 2 -> 297 - pageNewStep2 source step 299 + 2 -> 300 + pageNewStep2 source step 298 301 299 - 3 -> 300 - pageNewStep3 source step 302 + 3 -> 303 + pageNewStep3 source step 301 304 302 - _ -> 303 - text "" 305 + _ -> 306 + text "" 307 + ] 304 308 ] 305 309 ] 306 310 , div ··· 357 361 [ ( "text-align", "left" ) ] 358 362 ] 359 363 (renderSourceProperties source) 360 - , br 361 - [] 362 - [] 363 364 , br 364 365 [] 365 366 []
+2 -1
src/Css/Form/Mixins.elm
··· 9 9 boxStyles : Style 10 10 boxStyles = 11 11 batch 12 - [ margin3 zero auto (gr 6) 12 + [ margin2 zero auto 13 + , paddingBottom (gr 6) 13 14 ] 14 15 15 16
+2 -1
src/Css/Form/Styles.elm
··· 61 61 [ fontSize (basem 20) 62 62 , position absolute 63 63 , property "pointer-events" "none" 64 + , property "top" "27.5%" 65 + , property "top" ("calc((100% - " ++ .value (gr 6) ++ ") / 2)") 64 66 , right (gr 2) 65 - , top (pct 50) 66 67 , transforms [ translateY <| pct -50 ] 67 68 ] 68 69 ]
+3 -1
src/Css/Styles.elm
··· 404 404 -- 405 405 , children 406 406 [ div 407 - [ property "break-inside" "avoid" 407 + [ property "-webkit-column-break-inside" "avoid" 408 + , property "break-inside" "avoid" 409 + , property "page-break-inside" "avoid" 408 410 ] 409 411 ] 410 412 ]