damus

nostr ios client
git clone git://jb55.com/damus
Log | Files | Refs | README | LICENSE

commit 28e67f4a7c96d98e349b4dead1dcc7772d79c6c9
parent c439100a864997d67b997784339d25dffd431f8b
Author: ericholguin <eric.holguinsanchez@gmail.com>
Date:   Tue, 25 Apr 2023 21:03:59 -0600

Fix zap type selection on smaller phones

Closes: #1018
Changelog-Fixed: Zap type selection on smaller phones

Diffstat:
Mdamus/Views/Zaps/ZapTypePicker.swift | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/damus/Views/Zaps/ZapTypePicker.swift b/damus/Views/Zaps/ZapTypePicker.swift @@ -87,7 +87,7 @@ struct ZapTypePicker: View { .font(.system(size: 16)) } } - .frame(minWidth: 400, maxWidth: .infinity, minHeight: 50, maxHeight: 70) + .frame(maxWidth: .infinity, minHeight: 50, maxHeight: 70) .foregroundColor(fontColor()) .background(zap_type == type ? fillColor() : DamusColors.adaptableGrey) .cornerRadius(15)