diff options
author | Ben Sima <ben@bsima.me> | 2021-01-29 04:02:15 -0500 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2021-01-29 04:02:15 -0500 |
commit | 308fba10204b8898b6b14fb481fb7de2088abf09 (patch) | |
tree | 8b72e0edbc1a7242237dd96bcd3e841f037851f2 /Biz/Look.hs | |
parent | b289dee25ad8ce4c2622fadb2f4c31fb90914b39 (diff) |
Slighly better form styling
Diffstat (limited to 'Biz/Look.hs')
-rw-r--r-- | Biz/Look.hs | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/Biz/Look.hs b/Biz/Look.hs index a6bb626..9cd4ad9 100644 --- a/Biz/Look.hs +++ b/Biz/Look.hs @@ -22,6 +22,9 @@ module Biz.Look hoverButton, -- | Geometry marginAll, + marginX, + marginY, + paddingAll, ) where @@ -124,4 +127,13 @@ textDecorationWidth :: Size LengthUnit -> Css textDecorationWidth = Clay.key "text-decoration-width" marginAll :: Size a -> Css -marginAll x = Clay.margin x x x x +marginAll x = margin x x x x + +marginX :: Size a -> Css +marginX n = marginLeft n <> marginRight n + +marginY :: Size a -> Css +marginY n = marginTop n <> marginBottom n + +paddingAll :: Size a -> Css +paddingAll x = Clay.padding x x x x |