From 2aaa275011717ef3d51c3562cc83f9d1821dd35f Mon Sep 17 00:00:00 2001 From: Ben Sima Date: Sat, 20 Mar 2021 10:26:25 -0400 Subject: Display hotspots graph and stacked line charts I think I should change the colors a bit... to be done later I suppose. --- Biz/Look.hs | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'Biz/Look.hs') diff --git a/Biz/Look.hs b/Biz/Look.hs index ee17525..372dd08 100644 --- a/Biz/Look.hs +++ b/Biz/Look.hs @@ -32,8 +32,11 @@ module Biz.Look -- | Grid gridArea, gridTemplateAreas, + gridTemplateRows, columnGap, rowGap, + -- | Alignment + justifySelf, ) where @@ -163,8 +166,14 @@ gridArea = Stylesheet.key "grid-area" gridTemplateAreas :: [Property.Literal] -> Css gridTemplateAreas = Stylesheet.key "grid-template-areas" <. noCommas +gridTemplateRows :: [Property.Literal] -> Css +gridTemplateRows = Stylesheet.key "grid-template-columns" <. noCommas + columnGap :: Size a -> Css columnGap = Stylesheet.key "column-gap" rowGap :: Size a -> Css rowGap = Stylesheet.key "row-gap" + +justifySelf :: JustifyContentValue -> Css +justifySelf = Stylesheet.key "justify-self" -- cgit v1.2.3