Fix table flex sizing and move deploy scripts

- Make data tables fill available height so scrolling behaves correctly
- Relocate deploy scripts under `deploy/docker`
This commit is contained in:
dirtydishes 2026-05-07 22:16:21 -04:00
parent 9c351d12d1
commit de9a965a6c
3 changed files with 3 additions and 0 deletions

View file

@ -954,6 +954,7 @@ h3 {
}
.data-table-wrap {
display: flex;
flex: 1 1 auto;
min-height: 0;
overflow-x: auto;
@ -965,7 +966,9 @@ h3 {
.data-table {
display: flex;
flex: 1 1 auto;
flex-direction: column;
height: 100%;
min-height: 0;
min-width: 980px;
}