diff --git a/usr-web/src/routes/(apps)/manifest/+page.svelte b/usr-web/src/routes/(apps)/manifest/+page.svelte index ba1f82a..7b494e2 100644 --- a/usr-web/src/routes/(apps)/manifest/+page.svelte +++ b/usr-web/src/routes/(apps)/manifest/+page.svelte @@ -188,6 +188,7 @@ +
@@ -254,6 +255,7 @@ {/each}
+
@@ -641,6 +643,7 @@ } #order-operations-content { background-color: lightgray; + min-height: 30rem; } #order-operations-content > button { background-color: darkgray; @@ -661,4 +664,12 @@ text-decoration: underline; color: blue; } + .table-fix-head { + max-height: 25rem; + overflow-y: scroll; + } + .table-fix-head thead th { + position: sticky; + top: 0px; + }