From 479fac1265b7d14017a49b03c1b5ef959d77cc2e Mon Sep 17 00:00:00 2001 From: Elena Willen Date: Mon, 9 Oct 2023 11:29:24 +0200 Subject: [PATCH] fix(UIConstants): Clarify comment --- MailCore/UI/UIConstants.swift | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/MailCore/UI/UIConstants.swift b/MailCore/UI/UIConstants.swift index 0ca362ed2e..a660b634f8 100644 --- a/MailCore/UI/UIConstants.swift +++ b/MailCore/UI/UIConstants.swift @@ -78,8 +78,9 @@ public extension UIConstants { public extension UIConstants { static let navbarIconSize: CGFloat = 24 - // size of 3 icons + padding between them - static let navbarIconsSpace: CGFloat = navbarIconSize * 3 + (16 * 5) + static let navbarIconPadding: CGFloat = 16 + // size of 3 icons + 5 paddings between them + static let navbarIconsSpace: CGFloat = navbarIconSize * 3 + (navbarIconPadding * 5) static let onboardingLogoHeight: CGFloat = 56 static let onboardingButtonHeight: CGFloat = 104