Skip to content

Commit

Permalink
🐛 :: 실수 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
lsh1202 committed Jul 30, 2024
1 parent 5d63435 commit 0cb7ea3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Sources/QDS/Component/Button/QvickButton.swift
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ struct QvickButton: View {
.foregroundStyle(background)
.overlay {
Text(text)
.font(.pretendard(.SemiBold, size: 17))
.font(.pretendard(.bold, size: 17))
.foregroundStyle(.white)
}
}
Expand Down
4 changes: 2 additions & 2 deletions Sources/QDS/Component/TextField/QvickTextField.swift
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,15 @@ struct QvickTextField: View {

TextField(
text: $text,
prompt: Text(prompt).font(.pretendard(.Regular, size: 14))
prompt: Text(prompt).font(.pretendard(.regular, size: 14))
) {

}
.overlay {
if self.isTab {
Text(prompt)
.foregroundStyle(.blue)
.font(.pretendard(.Regular, size: 11))
.font(.pretendard(.regular, size: 11))
.padding(.horizontal, 5)
.background(Color.white)
.offset(x: -120, y: -30)
Expand Down

0 comments on commit 0cb7ea3

Please sign in to comment.