Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Bitkit/Components/DrawerView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,7 @@ struct DrawerView: View {
.foregroundColor(.white)
.kerning(-1)
.padding(.vertical, 18)
.dynamicTypeSize(...DynamicTypeSize.xxLarge)
}
.frame(height: 56)

Expand Down
2 changes: 1 addition & 1 deletion Bitkit/Components/EmptyStateView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ struct EmptyStateView: View {

HStack(alignment: .bottom, spacing: 0) {
DisplayText(t(type.localizationKey), accentColor: type.accentColor)
.frame(width: 224)
.frame(width: 240)

Image("empty-state-arrow")
.resizable()
Expand Down
1 change: 1 addition & 0 deletions Bitkit/Styles/TextStyle.swift
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ struct DisplayText: View {
.textCase(.uppercase)
.padding(.bottom, -9)
.frame(maxWidth: .infinity, alignment: .leading)
.dynamicTypeSize(...DynamicTypeSize.xxLarge)
}
}

Expand Down
Loading