diff --git a/VDS/Components/Toggle/VDSToggle.swift b/VDS/Components/Toggle/VDSToggle.swift index a96b887a..04db3f0e 100644 --- a/VDS/Components/Toggle/VDSToggle.swift +++ b/VDS/Components/Toggle/VDSToggle.swift @@ -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 } //--------------------------------------------------