diff --git a/Ring/Ring/Features/Walkthrough/WelcomeViewController.swift b/Ring/Ring/Features/Walkthrough/WelcomeViewController.swift index 72b00f8a5bbf0f5d5175e9abd29ee3f3e562add1..6bb8f0c41a85b9e109f638bb60d3525f5dcf49f4 100644 --- a/Ring/Ring/Features/Walkthrough/WelcomeViewController.swift +++ b/Ring/Ring/Features/Walkthrough/WelcomeViewController.swift @@ -59,6 +59,11 @@ class WelcomeViewController: UIViewController, StoryboardBased, ViewModelBased { } for button in [joinJamiButton, linkAccountButton, importDeviceButton, importBackupButton, advancedFeaturesButton, connectJamiAcountManagerButton, configureSIPButton] { button?.titleLabel?.ajustToTextSize() + + // Set left and right padding + let leftPadding: CGFloat = 5 + let rightPadding: CGFloat = 5 + button?.contentEdgeInsets = UIEdgeInsets(top: 0, left: leftPadding, bottom: 0, right: rightPadding) } self.joinJamiButton.backgroundColor = .jamiButtonDark self.linkAccountButton.backgroundColor = .jamiButtonDark