From 853ee87d488a474ee7c02797d7305b12e373b3a2 Mon Sep 17 00:00:00 2001 From: Philip Munksgaard Date: Fri, 1 Feb 2019 11:15:36 +0100 Subject: [PATCH] Use `containerStyles` instead of `styles` According to the conversation in #59, we should probably be using `containerStyles` here. Hopefully, this fixes #59 --- src/Internal/Junk.elm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Internal/Junk.elm b/src/Internal/Junk.elm index 11f86be..8c7903b 100644 --- a/src/Internal/Junk.elm +++ b/src/Internal/Junk.elm @@ -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