Manos Chorianopoulos

AnalysisItemViewCell ui fix

......@@ -39,16 +39,20 @@ class AnalysisItemViewCell: UITableViewCell {
// date
dateLabel.textColor = UIColor(rgb: 0x212121)
dateLabel.font = UIFont(name: "PeridotPE-Bold", size: 12.0)
// title
titleLabel.textColor = UIColor(rgb: 0x212121)
titleLabel.font = UIFont(name: "PeridotPE-Regular", size: 17.0)
// price
priceLabel.textColor = UIColor(rgb: 0x212121)
priceLabel.font = UIFont(name: "PeridotPE-Bold", size: 17.0)
// subtitle
// subtitleLabel.textColor = UIColor(rgb: 0x9D9D9C)
subtitleLabel.textColor = UIColor(rgb: 0x212121)
subtitleLabel.font = UIFont(name: "PeridotPE-Regular", size: 14.0)
}
}
......