Questions tagged [clay-css]

Clay is a Haskell EDSL that allows generating CSS rules directly from Haskell.

Clay is a Haskell EDSL that allows generating CSS rules directly from Haskell. The Clay homepage contains both tutorials and documentation. The development is hosted at GitHub.

1 questions
0
votes
1 answer

Adding !important marker to Clay CSS rules

I'm using Clay to generate CSS rules in Haskell. For example: cssStyle :: Css cssStyle = body ? paddingTop (px 60) generates this CSS: body {padding-top : 60px;} How can I add an !important tag to this rule that yields body {padding-top : 60px…
Uli Köhler
  • 13,012
  • 16
  • 70
  • 120