aboutsummaryrefslogtreecommitdiff
path: root/server/src
diff options
context:
space:
mode:
authorJoris2018-10-30 20:33:17 +0100
committerJoris2018-10-30 20:33:17 +0100
commit8a28f608d8e08fba4bbe54b46804d261686c3c03 (patch)
tree0accedf149dc42461ec2662f190243f9a9d3888b /server/src
parent50fb8fa48d1c4881da20b4ecf6d68a772301e713 (diff)
downloadbudget-8a28f608d8e08fba4bbe54b46804d261686c3c03.tar.gz
budget-8a28f608d8e08fba4bbe54b46804d261686c3c03.tar.bz2
budget-8a28f608d8e08fba4bbe54b46804d261686c3c03.zip
Upgrade reflex-platform
Diffstat (limited to 'server/src')
-rw-r--r--server/src/Design/Modal.hs2
-rw-r--r--server/src/Design/Views.hs2
2 files changed, 2 insertions, 2 deletions
diff --git a/server/src/Design/Modal.hs b/server/src/Design/Modal.hs
index 2677fd8..914c011 100644
--- a/server/src/Design/Modal.hs
+++ b/server/src/Design/Modal.hs
@@ -31,7 +31,7 @@ design = do
zIndex 1000
backgroundColor white
sym borderRadius (px 5)
- boxShadow (px 0) (px 0) (px 15) (rgba 0 0 0 0.5)
+ boxShadow . pure . bsColor (rgba 0 0 0 0.5) $ shadowWithBlur (px 0) (px 0) (px 15)
".add" ? Add.design
".delete" ? Delete.design
diff --git a/server/src/Design/Views.hs b/server/src/Design/Views.hs
index a73a1fa..b9e3cf8 100644
--- a/server/src/Design/Views.hs
+++ b/server/src/Design/Views.hs
@@ -43,5 +43,5 @@ design = do
".tag" ? do
sym borderRadius (px 4)
sym2 padding (px 2) (px 5)
- boxShadow (px 2) (px 2) (px 5) (rgba 0 0 0 0.3)
+ boxShadow . pure . bsColor (rgba 0 0 0 0.3) $ shadowWithBlur (px 2) (px 2) (px 5)
color Color.white