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.

Update elm-css

+11 -11
+2 -2
elm-package.json
··· 28 28 "evancz/url-parser": "2.0.1 <= v < 3.0.0", 29 29 "justinmimbs/elm-date-extra": "2.0.3 <= v < 3.0.0", 30 30 "lukewestby/elm-string-interpolate": "1.0.1 <= v < 2.0.0", 31 - "rtfeldman/elm-css": "8.0.0 <= v < 10.0.0", 31 + "rtfeldman/elm-css": "9.1.0 <= v < 10.0.0", 32 32 "rtfeldman/elm-css-helpers": "2.1.0 <= v < 3.0.0", 33 33 "rtfeldman/elm-css-util": "1.0.2 <= v < 2.0.0", 34 34 "rtfeldman/hex": "1.0.0 <= v < 2.0.0", 35 - "scottcorgan/elm-css-normalize": "1.1.7 <= v < 2.0.0", 35 + "scottcorgan/elm-css-normalize": "1.1.8 <= v < 2.0.0", 36 36 "spisemisu/elm-sha": "1.0.5 <= v < 1.0.6", 37 37 "spisemisu/elm-utf8": "1.0.1 <= v < 1.0.2", 38 38 "truqu/elm-base64": "1.0.5 <= v < 1.0.6"
+1 -1
src/Css/Equalizer/Styles.elm
··· 180 180 -- 181 181 , let 182 182 pseudo = 183 - mixin 183 + batch 184 184 [ backgroundColor (cssColorOpac (knobOpac + 0.1) knobColor) 185 185 , bottom zero 186 186 , height (px 9)
+6 -6
src/Css/Form/Mixins.elm
··· 6 6 import Variables exposing (borderRadiuses, colorDerivatives) 7 7 8 8 9 - boxStyles : Mixin 9 + boxStyles : Style 10 10 boxStyles = 11 - mixin 11 + batch 12 12 [ marginBottom (gr 6) 13 13 ] 14 14 15 15 16 - inputStyles : Mixin 16 + inputStyles : Style 17 17 inputStyles = 18 - mixin 18 + batch 19 19 [ defaultFont 20 20 21 21 -- ··· 36 36 ] 37 37 38 38 39 - singleLineInputStyles : Mixin 39 + singleLineInputStyles : Style 40 40 singleLineInputStyles = 41 - mixin 41 + batch 42 42 [ height (gr 7) 43 43 , lineHeight (gr 7) 44 44 , padding2 zero (gr 2)
+2 -2
src/Css/Traits.elm
··· 59 59 -- Css / Mixins 60 60 61 61 62 - defaultFont : Mixin 62 + defaultFont : Style 63 63 defaultFont = 64 - mixin [ fontFamilies [ "Overpass", "sans-serif" ] ] 64 + batch [ fontFamilies [ "Overpass", "sans-serif" ] ] 65 65 66 66 67 67