Skip to content

Commit

Permalink
Use containerStyles instead of styles
Browse files Browse the repository at this point in the history
According to the conversation in terezka#59, we should probably be using `containerStyles` here.

Hopefully, this fixes terezka#59
  • Loading branch information
Munksgaard authored Feb 1, 2019
1 parent 1b69e1b commit 853ee87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Internal/Junk.elm
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ hoverAt system x y styles view =
containerStyles =
standardStyles ++ posititonStyles ++ styles
in
Html.div (List.map (\(p,v) -> Html.Attributes.style p v) styles) view
Html.div (List.map (\(p,v) -> Html.Attributes.style p v) containerStyles) view



Expand Down

0 comments on commit 853ee87

Please sign in to comment.