{-# LANGUAGE QuasiQuotes #-}

module FlexTask.Styling where


import Text.Cassius (Css, cassius)



horizontalRBStyle :: render -> Css
horizontalRBStyle :: forall render. render -> Css
horizontalRBStyle = render -> Css
[cassius|
  input[type="radio"]
    margin-left: 15px;
    margin-right: 5px;
  |]

checkboxStyle :: render -> Css
checkboxStyle :: forall render. render -> Css
checkboxStyle = render -> Css
[cassius|
  input[type="checkbox"]
    margin-left: 15px;
    margin-right: 5px;
  |]