diff options
| author | Joris | 2018-10-31 19:03:19 +0100 | 
|---|---|---|
| committer | Joris | 2018-10-31 19:03:19 +0100 | 
| commit | 86957359ecf54c205aee1c09e151172c327e987a (patch) | |
| tree | 57232850550209d491e74498fddd500b59bfd1e3 /server/src/Design/Helper.hs | |
| parent | b5244184920b4d7a8d64eada2eca21e9a6ea2df9 (diff) | |
Various fixes
Diffstat (limited to 'server/src/Design/Helper.hs')
| -rw-r--r-- | server/src/Design/Helper.hs | 13 | 
1 files changed, 1 insertions, 12 deletions
| diff --git a/server/src/Design/Helper.hs b/server/src/Design/Helper.hs index 6980c71..e586d56 100644 --- a/server/src/Design/Helper.hs +++ b/server/src/Design/Helper.hs @@ -1,16 +1,14 @@  module Design.Helper    ( clearFix    , button -  , input    , centeredWithMargin    , verticalCentering    ) where  import           Prelude          hiding (span) -import           Clay             hiding (button, input) +import           Clay             hiding (button) -import           Design.Color     as Color  import           Design.Constants  clearFix :: Css @@ -37,15 +35,6 @@ button backgroundCol textCol h focusOp = do    hover & backgroundColor (focusOp backgroundCol)    focus & backgroundColor (focusOp backgroundCol) -input :: Double -> Css -input h = do -  height (px h) -  padding (px 10) (px 10) (px 10) (px 10) -  borderRadius radius radius radius radius -  border solid (px 1) Color.dustyGray -  focus & borderColor Color.silver -  verticalAlign middle -  centeredWithMargin :: Css  centeredWithMargin = do    width (pct blockPercentWidth) | 
