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

@@ -67,17 +67,10 @@
{
<div class="row h-100">
<div class="col-6">
@* <textarea
id="description"
class="form-control h-100"
rows=12
@bind="description"
@oninput="handleNewDescription"
/> *@
<MonacoTextArea Value="@rawText" OnChange="@handleChange" />
<MonacoTextArea Value=@rawText OnChange=@handleChange />
</div>
<div class="col-6">
<div class="col-6 overflow-y-auto h-100" >
@if (error != null)
{
<p class="text-danger text-truncate">Error: @error</p>
@@ -99,7 +92,7 @@
@(preview)
</div>
<hr>
<RubricDisplay />
<RubricDisplay />
</div>
</div>
}