diff options
Diffstat (limited to 'Biz/Look.hs')
-rw-r--r-- | Biz/Look.hs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Biz/Look.hs b/Biz/Look.hs index c2ef55e..e7bcb82 100644 --- a/Biz/Look.hs +++ b/Biz/Look.hs @@ -15,6 +15,9 @@ module Biz.Look noColorPreference, -- | Font fontStack, + -- | Clay.Text extensions + textDecorationThickness, + textDecorationWidth, -- | Elements hoverButton, ) @@ -97,3 +100,9 @@ fuckingStyle = do background ("#444" :: Color) "a:link" ? color ("#5bf" :: Color) "a:visited" ? color ("#ccf" :: Color) + +textDecorationThickness :: Size LengthUnit -> Css +textDecorationThickness = Clay.key "text-decoration-thickness" + +textDecorationWidth :: Size LengthUnit -> Css +textDecorationWidth = Clay.key "text-decoration-width" |