diff options
author | Ben Sima <ben@bsima.me> | 2021-01-26 18:04:14 -0500 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2021-01-26 18:09:35 -0500 |
commit | 0ec6b06acee62b57a50ed9718b8da31fced18c4d (patch) | |
tree | 3112d481c0b0cb58eabb9f826305c867a4d4acfd /Biz/Look.hs | |
parent | 699d17db81d3508548934d39b92edb01700b3c9a (diff) |
Add user subscription field
Also improved the test situation, did some refactors, and now listing the user's
past analyses on their account page.
Diffstat (limited to 'Biz/Look.hs')
-rw-r--r-- | Biz/Look.hs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Biz/Look.hs b/Biz/Look.hs index 27bc8c5..a6bb626 100644 --- a/Biz/Look.hs +++ b/Biz/Look.hs @@ -20,6 +20,8 @@ module Biz.Look textDecorationWidth, -- | Elements hoverButton, + -- | Geometry + marginAll, ) where @@ -120,3 +122,6 @@ textDecorationThickness = Clay.key "text-decoration-thickness" textDecorationWidth :: Size LengthUnit -> Css textDecorationWidth = Clay.key "text-decoration-width" + +marginAll :: Size a -> Css +marginAll x = Clay.margin x x x x |