Skip to content

Commit

Permalink
chore: slight input adjustments
Browse files Browse the repository at this point in the history
  • Loading branch information
x86y committed Oct 17, 2023
1 parent e00b009 commit 784a9a8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Beacon/Components/ReplInput.swift
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,10 @@ struct ReplInput: View {
.submitLabel(.done)
.disableAutocorrection(true)
.font(font)
.frame(minHeight: 48)
.padding(EdgeInsets(top: 0, leading: 8, bottom: 0, trailing: 8))
.frame(minHeight: 36)
.padding(EdgeInsets(top: 0, leading: 16, bottom: 0, trailing: 48))
.overlay(
RoundedRectangle(cornerRadius: 18)
RoundedRectangle(cornerRadius: 48)
.stroke(.gray.opacity(0.25), lineWidth: 1)
).modifier(EvalButton(onSubmit: onSubmit))
}
Expand All @@ -87,7 +87,7 @@ struct EvalButton: ViewModifier {
}) {
Image(systemName: "restart.circle")
.resizable()
.frame(width: 32.0, height: 32.0)
.frame(width: 36.0, height: 36.0)
}
.padding(8)
}
Expand Down

0 comments on commit 784a9a8

Please sign in to comment.