Commit 4308e373 by Daniel Dahan

development: update shadow on cards

parent 95ce6e46
...@@ -120,9 +120,9 @@ public class MaterialCardView : UIView { ...@@ -120,9 +120,9 @@ public class MaterialCardView : UIView {
// //
internal func prepareShadow() { internal func prepareShadow() {
layer.shadowColor = MaterialTheme.black.color.CGColor layer.shadowColor = MaterialTheme.black.color.CGColor
layer.shadowOffset = CGSizeMake(0, 0.1) layer.shadowOffset = CGSizeMake(0.1, 0.1)
layer.shadowOpacity = 0.1 layer.shadowOpacity = 0.4
layer.shadowRadius = 1 layer.shadowRadius = 3
} }
// //
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment