aboutsummaryrefslogtreecommitdiff
path: root/src/server/Design/View/Payment/Table.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/Design/View/Payment/Table.hs')
-rw-r--r--src/server/Design/View/Payment/Table.hs42
1 files changed, 0 insertions, 42 deletions
diff --git a/src/server/Design/View/Payment/Table.hs b/src/server/Design/View/Payment/Table.hs
deleted file mode 100644
index a866b40..0000000
--- a/src/server/Design/View/Payment/Table.hs
+++ /dev/null
@@ -1,42 +0,0 @@
-{-# LANGUAGE OverloadedStrings #-}
-
-module Design.View.Payment.Table
- ( design
- ) where
-
-import Clay
-
-import qualified Design.Color as Color
-import qualified Design.Media as Media
-
-design :: Css
-design = do
- ".cell" ? do
- ".name" & do
- Media.tabletDesktop $ width (pct 30)
-
- ".cost" & do
- Media.tabletDesktop $ width (pct 10)
-
- ".user" & do
- Media.tabletDesktop $ width (pct 15)
-
- ".category" & do
- Media.tabletDesktop $ width (pct 10)
-
- ".date" & do
- Media.tabletDesktop $ width (pct 15)
- Media.desktop $ do
- ".shortDate" ? display none
- ".longDate" ? display inline
- Media.tablet $ do
- ".shortDate" ? display inline
- ".longDate" ? display none
- Media.mobile $ do
- ".shortDate" ? display none
- ".longDate" ? display inline
- marginBottom (em 0.5)
-
- ".button" & svg ? do
- "path" ? ("fill" -: (plain . unValue . value $ Color.chestnutRose))
- width (px 18)