Skip to content

Commit

Permalink
fix padding on mobile view
Browse files Browse the repository at this point in the history
  • Loading branch information
erinnmclaughlin committed Apr 19, 2024
1 parent 62277e3 commit 8653a2e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion src/Site/Site.Client/Components/TerminalChat.razor.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,4 @@
flex-direction: column;
gap: 0.5em;
padding: 0.5em;
padding-bottom: 4rem;
}
2 changes: 1 addition & 1 deletion src/Site/Site.Client/Components/TerminalInput.razor
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<div>
<label>User</label>
<EditForm Model="this" OnValidSubmit="SubmitAsync" @onclick="FocusInputFieldAsync">
<EditForm Model="this" OnValidSubmit="SubmitAsync" @onclick="FocusInputFieldAsync" style="padding-bottom: 4rem">
<AntiforgeryToken />
<DataAnnotationsValidator />
@if (string.IsNullOrEmpty(Message))
Expand Down

0 comments on commit 8653a2e

Please sign in to comment.