aboutsummaryrefslogtreecommitdiff
path: root/src/server/Design/LoggedIn/Home/Search.hs
blob: 1bc91efb4d47e83c79c296b89b6d7da53026e1d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{-# LANGUAGE OverloadedStrings #-}

module Design.LoggedIn.Home.Search
  ( design
  ) where

import Clay

import Design.Constants

design :: Css
design = do
  marginBottom blockMarginBottom
  marginLeft (pct blockPercentMargin)
  marginRight (pct blockPercentMargin)

  ".textInput" ? do
    display inlineBlock
    marginRight (px 30)