fixed height on assignment edit page

This commit is contained in:
2023-12-05 16:13:24 -07:00
parent 647423ff1a
commit 6e49c79cbd
4 changed files with 25 additions and 45 deletions

View File

@@ -55,14 +55,14 @@
}
}
<div style="height: 100vh;" class="m-0 p-1">
@if (loading)
{
<Spinner />
}
<div style="height: 100vh;" class="m-0 p-1 d-flex flex-row">
@if (loading)
{
<Spinner />
}
@if (planner.LocalCourse != null && assignmentContext.Assignment != null)
{
<AssignmentForm />
}
@if (planner.LocalCourse != null && assignmentContext.Assignment != null)
{
<AssignmentForm />
}
</div>