diff options
author | Jakub Hampl <kopomir@gmail.com> | 2019-02-14 15:23:49 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-14 15:23:49 +0000 |
commit | 6bd5f8ccbd8c44c3311ef36b0e2de9ede4fa71ed (patch) | |
tree | de40a36d34cb734c2765a705506436f8b38e28a9 /examples/Example02.elm | |
parent | f0c36a3d49fad46e0fb6cafeb7a021dd5d775993 (diff) |
New Style Generator (#8)
Diffstat (limited to 'examples/Example02.elm')
-rw-r--r-- | examples/Example02.elm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/Example02.elm b/examples/Example02.elm index 5e04567..c485a7a 100644 --- a/examples/Example02.elm +++ b/examples/Example02.elm @@ -2,11 +2,11 @@ module Example02 exposing (main) import Browser import Html exposing (div) -import Html.Attributes exposing (style) +import Html.Attributes import Mapbox.Element exposing (..) -import Outdoors +import Styles.SatelliteStreets exposing (style) main = - div [ style "height" "100vh" ] - [ map [] Outdoors.style ] + div [ Html.Attributes.style "height" "100vh" ] + [ map [] style ] |