From f41775acd6faf1f168333fec55494cb59cdd49d8 Mon Sep 17 00:00:00 2001 From: "ir.__.si" Date: Sun, 26 Nov 2023 01:54:08 +0900 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=84=20UI:=20#2=20-=20CMCTextField=20?= =?UTF-8?q?=EB=B2=84=ED=8A=BC=20trailing=EA=B0=92=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- DesignSystem/Sources/CMCTextField.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/DesignSystem/Sources/CMCTextField.swift b/DesignSystem/Sources/CMCTextField.swift index e1e0179..1622cb7 100644 --- a/DesignSystem/Sources/CMCTextField.swift +++ b/DesignSystem/Sources/CMCTextField.swift @@ -167,7 +167,7 @@ public final class CMCTextField: UIView{ bottomBoarder.snp.makeConstraints { $0.height.equalTo(1) $0.leading.bottom.equalToSuperview() - $0.trailing.equalTo(accessoryCMCButton.snp.leading).offset(-8) + $0.trailing.equalTo(accessoryCMCButton.snp.leading).offset(-16) } textField.snp.makeConstraints { @@ -203,8 +203,8 @@ public final class CMCTextField: UIView{ accessoryCMCButton.snp.makeConstraints { $0.height.equalTo(34) $0.width.equalTo(76) - $0.trailing.equalToSuperview().offset(-18) - $0.centerY.equalToSuperview() + $0.trailing.equalToSuperview() + $0.bottom.equalTo(bottomBoarder.snp.top).offset(-10) }