correction

This commit is contained in:
Kevin G Christiano 2020-06-08 13:14:11 -04:00
parent f730d58aa3
commit 24fc03406a
2 changed files with 3 additions and 3 deletions

View File

@ -14,7 +14,7 @@ import Foundation
//-----------------------------------------------------
public var stack: Stack<StackModel>
public let headline = Label(fontStyle: .BoldBodySmall)
public let body = Label(fontStyle: .BoldBodySmall)
public let body = Label(fontStyle: .RegularBodySmall)
// MARK: - Initializers
public override init(style: UITableViewCell.CellStyle, reuseIdentifier: String?) {

View File

@ -15,8 +15,8 @@ open class DoughnutChart: View {
//--------------------------------------------------
public var doughnutLayer = CALayer()
public var titleLabel = Label(fontStyle: .BoldTitleLarge, true)
public var subTitleLabel = Label(fontStyle: .RegularMicro, true)
public var titleLabel = Label(fontStyle: .BoldTitleLarge)
public var subTitleLabel = Label(fontStyle: .RegularMicro)
public var labelContainer = MVMCoreUICommonViewsUtility.commonView()
public static let heightConstant: CGFloat = 136
private var sizeObject = MFStyler.sizeObjectGeneric(forCurrentDevice: heightConstant)!