From bed45caacf984200d849e625f6cd66e8db1dc66b Mon Sep 17 00:00:00 2001 From: SSOOYA <bsy24660@naver.com> Date: Wed, 15 Feb 2023 21:55:27 +0900 Subject: [PATCH] =?UTF-8?q?#171:=20Tag=20configuration=20height31=20?= =?UTF-8?q?=EC=BC=80=EC=9D=B4=EC=8A=A4=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Zatch/Global/Source/Component/Tag/TagStlye.swift | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Zatch/Global/Source/Component/Tag/TagStlye.swift b/Zatch/Global/Source/Component/Tag/TagStlye.swift index c91d79b7..d6d9aa57 100644 --- a/Zatch/Global/Source/Component/Tag/TagStlye.swift +++ b/Zatch/Global/Source/Component/Tag/TagStlye.swift @@ -17,6 +17,7 @@ extension ZatchComponent.Tag{ enum TagType{ case height20 case height25 + case height31 } } @@ -79,7 +80,7 @@ extension ZatchComponent.Tag.TagType{ switch self{ case .height20: return ZatchComponent.Padding(left: 8, right: 8, top: 0, bottom: 0) case .height25: return ZatchComponent.Padding(left: 12, right: 12, top: 2, bottom: 2) - default: return ZatchComponent.Padding(left: 0, right: 0, top: 0, bottom: 0) + case .height31: return ZatchComponent.Padding(left: 12, right: 12, top: 6, bottom: 6) } } @@ -87,7 +88,7 @@ extension ZatchComponent.Tag.TagType{ switch self{ case .height20: return .medium12 case .height25: return .medium15_21 - default: return .medium12 + case .height31: return .medium16 } } @@ -95,7 +96,7 @@ extension ZatchComponent.Tag.TagType{ switch self{ case .height20: return 20 case .height25: return 25 - default: return 20 + case .height31: return 31 } } }