aboutsummaryrefslogtreecommitdiff
path: root/server/src/Design/Tooltip.hs
blob: eef804e818c7259d3fd6f848751be4819a8aa163 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module Design.Tooltip
  ( design
  ) where

import           Clay

import           Design.Color as Color

design :: Css
design = do
  backgroundColor Color.mossGreen
  borderRadius (px 5) (px 5) (px 5) (px 5)
  padding (px 5) (px 5) (px 5) (px 5)
  color Color.white