fix modal content overflow pushing footer out of view

This commit is contained in:
Justin Edmund 2025-12-13 23:12:30 -08:00
parent 7e0f66d9cc
commit 0e5f7e1642

View file

@ -481,8 +481,12 @@
.modal-content {
display: flex;
flex-direction: column;
height: 100%;
flex: 1;
min-height: 0;
overflow: hidden;
gap: $unit-2x;
padding: $unit-2x;
padding-top: 0;
}
.search-bar {