cleans up project structure

This commit is contained in:
2019-12-05 22:01:16 +01:00
parent 2c3f4ffc57
commit eb04c4f2b4
10 changed files with 78 additions and 1474 deletions

View File

@@ -29,7 +29,7 @@ icon params =
btn : msg -> { text : String, icon : String, color : String } -> Html msg
btn msg params =
button
[ class <| "button is-medium level-item " ++ params.color
[ class <| "button " ++ params.color
, onClick msg
]
[ icon { icon = params.icon, size = Nothing, ratio = Nothing }
@@ -38,7 +38,7 @@ btn msg params =
buttons btns =
div [ class "buttons" ] btns
div [ class "buttons level-item" ] btns
confirmButtons confirm cancel =
@@ -66,3 +66,7 @@ datatable headers rows =
headers
, tbody [] rows
]
-- Section