Manos Chorianopoulos

My Rewards color fixes

......@@ -32,7 +32,10 @@ import UIKit
badgeView.layer.cornerRadius = 16.0
badgeCountView.layer.cornerRadius = 4.0
badgeCountView.backgroundColor = UIColor(red: 0.92, green: 0.75, blue: 0.41, alpha: 1.00)
// badgeCountView.backgroundColor = UIColor(red: 0.92, green: 0.75, blue: 0.41, alpha: 1.00)
badgeCountView.backgroundColor = UIColor(rgb: 0xE20074)
badgeCountLabel.textColor = .white
}
func configureCell(badgeId: String, badgeCount: Int) {
......
......@@ -39,10 +39,12 @@ import SwiftEventBus
dotLeftWidth.constant = 12
dotLeftHeight.constant = 12
dotLeft.layer.cornerRadius = 6
dotLeft.backgroundColor = UIColor(rgb: 0xE20074)
dotRightWidth.constant = 8
dotRightHeight.constant = 8
dotRight.layer.cornerRadius = 4
dotRight.backgroundColor = UIColor(rgb: 0x767676)
}
......@@ -113,19 +115,23 @@ extension WalletActiveCouponsScrollTableViewCell: UIScrollViewDelegate {
dotLeftWidth.constant = 8
dotLeftHeight.constant = 8
dotLeft.layer.cornerRadius = 4
dotLeft.backgroundColor = UIColor(rgb: 0x767676)
dotRightWidth.constant = 12
dotRightHeight.constant = 12
dotRight.layer.cornerRadius = 6
dotRight.backgroundColor = UIColor(rgb: 0xE20074)
} else {
dotLeftWidth.constant = 12
dotLeftHeight.constant = 12
dotLeft.layer.cornerRadius = 6
dotLeft.backgroundColor = UIColor(rgb: 0xE20074)
dotRightWidth.constant = 8
dotRightHeight.constant = 8
dotRight.layer.cornerRadius = 4
dotRight.backgroundColor = UIColor(rgb: 0x767676)
}
}
......
......@@ -41,7 +41,8 @@ import UIKit
// voucherBannerLabel.text = "Ενημερώσου για το υπόλοιπο επιδότησης"
voucherCountView.layer.cornerRadius = 4.0
voucherCountView.backgroundColor = UIColor(red: 0.92, green: 0.75, blue: 0.41, alpha: 1.00)
// voucherCountView.backgroundColor = UIColor(red: 0.92, green: 0.75, blue: 0.41, alpha: 1.00)
voucherCountView.backgroundColor = UIColor(rgb: 0xE20074)
}
public override func setSelected(_ selected: Bool, animated: Bool) {
......