diff --git a/src/CSS/Property.purs b/src/CSS/Property.purs index e5abd88..5b4525f 100644 --- a/src/CSS/Property.purs +++ b/src/CSS/Property.purs @@ -4,11 +4,11 @@ import Prelude import CSS.String (class IsString, fromString) import Color (Color, cssStringHSLA) -import Data.Foldable (intercalate) +import Data.Foldable (intercalate, lookup) import Data.Maybe (fromMaybe) import Data.NonEmpty (NonEmpty, oneOf) import Data.Profunctor.Strong (second) -import Data.Tuple (Tuple(..), lookup) +import Data.Tuple (Tuple(..)) data Prefixed = Prefixed (Array (Tuple String String)) diff --git a/src/CSS/Render.purs b/src/CSS/Render.purs index 622c3ca..01ea33c 100644 --- a/src/CSS/Render.purs +++ b/src/CSS/Render.purs @@ -8,12 +8,12 @@ import CSS.String (fromString) import CSS.Stylesheet (CSS, StyleM, App(..), Feature(..), Keyframes(..), MediaQuery(..), MediaType(..), Rule(..), runS) import Data.Array (null, (:), drop, sort, uncons, mapMaybe) import Data.Either (Either(..), either) -import Data.Foldable (fold, foldMap, intercalate) +import Data.Foldable (fold, foldMap, intercalate, lookup) import Data.Maybe (Maybe(..), fromMaybe, maybe) import Data.NonEmpty (NonEmpty(..), (:|), oneOf) import Data.Semigroup.Foldable (foldl1) import Data.These (These(..), theseLeft, theseRight) -import Data.Tuple (Tuple(..), lookup, uncurry) +import Data.Tuple (Tuple(..), uncurry) import Effect (Effect) import Effect.Console (log)