File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -45,6 +45,7 @@ module Web.Atomic.CSS
4545 , right
4646 , left
4747 , overflow
48+ , Overflow (.. )
4849
4950 -- ** Flexbox
5051 -- $flexbox
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ class Attributable h where
3333infixl 5 @
3434
3535
36- instance {-# OVERLAPPABLE #-} (Attributable a , Attributable b ) => Attributable (a -> b ) where
36+ instance {-# OVERLAPPABLE #-} (Attributable b ) => Attributable (a -> b ) where
3737 (@) :: (a -> b ) -> (Attributes (a -> b ) -> Attributes (a -> b )) -> (a -> b )
3838 hh @ f = \ content ->
3939 hh content @ \ (Attributes m) ->
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ class Styleable h where
2525infixl 5 ~
2626
2727
28- instance {-# OVERLAPPABLE #-} (Styleable a , Styleable b ) => Styleable (a -> b ) where
28+ instance {-# OVERLAPPABLE #-} (Styleable b ) => Styleable (a -> b ) where
2929 (~) :: (a -> b ) -> (CSS (a -> b ) -> CSS (a -> b )) -> (a -> b )
3030 hh ~ f = \ content ->
3131 hh content ~ \ (CSS m) ->
You can’t perform that action at this time.
0 commit comments