Skip to content

Commit

Permalink
Go back to small text in Safety Plan fields
Browse files Browse the repository at this point in the history
  • Loading branch information
danielchalmers committed Apr 2, 2024
1 parent 162e117 commit 3515b80
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion JournalApp/Pages/SafetyPlanning/SafetyPlanItem.razor
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@
<div class="@($"safety-plan-item safety-plan-item-{MarkupUtil.ToClassName(Title)}")">
<MudText Typo="Typo.h5">@Title</MudText>
<MudText Typo="Typo.caption">@Subtitle</MudText>
<MudTextField T="string" @bind-Text="Text" Placeholder="@Placeholder" Variant="Variant.Outlined" Immediate DisableUnderLine AutoGrow Lines="3" MaxLines="10" />
<MudTextField Class="text-field-small" T="string" @bind-Text="Text" Placeholder="@Placeholder"
Variant="Variant.Outlined" Immediate DisableUnderLine
AutoGrow Lines="3" MaxLines="10" />
</div>

@code {
Expand Down
2 changes: 1 addition & 1 deletion JournalApp/wwwroot/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ body {
margin-top: 0 !important;
}

.mud-input-root-outlined {
.mud-input > textarea.mud-input-root-outlined {
margin: 0.25em !important;
}

Expand Down

0 comments on commit 3515b80

Please sign in to comment.