update toggle sizes

Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
This commit is contained in:
Matt Bruce 2022-07-29 10:53:30 -05:00
parent 529be82f36
commit f5c7d73bad

View File

@ -101,10 +101,10 @@ public class DefaultToggleModel: DefaultLabelModel, VDSToggleModel {
// MARK: - Static Properties
//--------------------------------------------------
// Sizes are from InVision design specs.
public static var toggleSize = CGSize(width: 51, height: 31)
public static var toggleSize = CGSize(width: 52, height: 24)
open class func getToggleScaledSize() -> CGSize { return Self.toggleSize }
public static var knobSize = CGSize(width: 28, height: 28)
public static var knobSize = CGSize(width: 20, height: 20)
open class func getKnobScaledSize() -> CGSize { return Self.knobSize }
//--------------------------------------------------