Make the save button fixed on the server config page.

This commit is contained in:
Jared Goodwin 2024-05-31 13:23:27 -07:00
parent 9ce6e01be1
commit d9d68d7677
2 changed files with 7 additions and 3 deletions

View File

@ -345,9 +345,7 @@
<ValidationMessage For="() => Input.UseHttpLogging" />
</div>
<div class="form-group mt-3">
<button type="button" class="btn btn-primary" @onclick="Save">Save</button>
</div>
<button id="saveButton" type="button" class="btn btn-lg btn-primary" @onclick="Save">Save</button>
</EditForm>
</div>
</div>

View File

@ -6,4 +6,10 @@
overflow-x: hidden;
white-space: nowrap;
border-radius: 5px;
}
#saveButton {
position: fixed;
right: 40px;
bottom: 20px;
}