Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improved layout of close channel and fee selection #1657

Merged
merged 1 commit into from
Oct 10, 2023
Merged
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
4 changes: 3 additions & 1 deletion components/Button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,9 @@ function Button(props: ButtonProps) {
color: iconOnly
? themeColor('text')
: quinary
? themeColor('text')
? warning
? themeColor('warning')
: themeColor('text')
: quaternary
? warning
? themeColor('warning')
Expand Down
7 changes: 3 additions & 4 deletions components/OnchainFeeInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ export default function OnchainFeeInput(props: OnchainFeeInputProps) {
>
<View
style={{
height: 65,
padding: loading ? 8 : 15,
height: 55,
justifyContent: 'center',
marginTop: 15,
borderRadius: 4,
marginBottom: 20,
Expand All @@ -69,9 +69,8 @@ export default function OnchainFeeInput(props: OnchainFeeInputProps) {
) : (
<Text
style={{
fontFamily: 'Lato-Regular',
color: themeColor('text'),
paddingBottom: 5,
paddingLeft: 15,
fontSize: 18
}}
>
Expand Down
Loading