aboutsummaryrefslogtreecommitdiff
path: root/css/Size.hs
diff options
context:
space:
mode:
authorJoris2020-10-31 15:24:26 +0100
committerJoris2020-10-31 15:24:26 +0100
commit1e167679f6827c7119d616633b21fffef269cd75 (patch)
tree9c846c03913366936a093976a329e7a774002283 /css/Size.hs
parentc9c0a6e8651da823b41e4186a736f2dbb48919db (diff)
Use only HTML and CSS
Diffstat (limited to 'css/Size.hs')
-rw-r--r--css/Size.hs24
1 files changed, 0 insertions, 24 deletions
diff --git a/css/Size.hs b/css/Size.hs
deleted file mode 100644
index 1fc097b..0000000
--- a/css/Size.hs
+++ /dev/null
@@ -1,24 +0,0 @@
-module Size
- ( lineHeight
- , listItemSep
- , tabletMarginBottom
- ) where
-
-import Clay hiding (lineHeight)
-import qualified Clay
-
-import qualified Media
-
-lineHeight :: Css
-lineHeight = do
- Media.desktop $ Clay.lineHeight (px 40)
- Media.tablet $ Clay.lineHeight (px 35)
- Media.mobile $ Clay.lineHeight (px 30)
-
-listItemSep :: Size LengthUnit
-listItemSep =
- px 8
-
-tabletMarginBottom :: Css
-tabletMarginBottom =
- Media.tablet $ marginBottom (px 15)