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.

Move Chunky module

+4 -4
+1 -1
src/Applications/UI.elm
··· 4 4 import Authentication 5 5 import Browser 6 6 import Browser.Navigation as Nav 7 + import Chunky exposing (..) 7 8 import Color 8 9 import Html exposing (Html, div, section) 9 10 import Html.Attributes exposing (style) ··· 16 17 import Tachyons.Classes as T 17 18 import UI.Authentication 18 19 import UI.Backdrop 19 - import UI.Chunky exposing (..) 20 20 import UI.Core exposing (Flags, Model, Msg(..), Switch(..)) 21 21 import UI.Kit 22 22 import UI.Navigation
+1 -1
src/Applications/UI/Authentication.elm
··· 1 1 module UI.Authentication exposing (signInScreen) 2 2 3 3 import Authentication 4 + import Chunky exposing (..) 4 5 import Color 5 6 import Html exposing (Html, a, button, div, em, img, span, text) 6 7 import Html.Attributes exposing (href, src, style, width) ··· 8 9 import Material.Icons.Action as Icons 9 10 import Tachyons exposing (classes) 10 11 import Tachyons.Classes as T 11 - import UI.Chunky exposing (..) 12 12 import UI.Core 13 13 import UI.Kit 14 14
+1 -1
src/Applications/UI/Chunky.elm src/Library/Chunky.elm
··· 1 - module UI.Chunky exposing (block, chunk, empty, raw, slab) 1 + module Chunky exposing (block, chunk, empty, raw, slab) 2 2 3 3 {-| Chunks, blocks and slabs. 4 4
+1 -1
src/Applications/UI/Navigation.elm
··· 1 1 module UI.Navigation exposing (global, globalItem) 2 2 3 + import Chunky exposing (..) 3 4 import Color 4 5 import Conditional exposing (..) 5 6 import Html exposing (Html, text) 6 7 import Html.Attributes exposing (href, style) 7 8 import Tachyons.Classes as T 8 - import UI.Chunky exposing (..) 9 9 import UI.Core exposing (Msg) 10 10 import UI.Kit 11 11 import UI.Page as Page exposing (Page)