fix modal content overflow pushing footer out of view
This commit is contained in:
parent
7e0f66d9cc
commit
0e5f7e1642
1 changed files with 5 additions and 1 deletions
|
|
@ -481,8 +481,12 @@
|
||||||
.modal-content {
|
.modal-content {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
height: 100%;
|
flex: 1;
|
||||||
|
min-height: 0;
|
||||||
|
overflow: hidden;
|
||||||
gap: $unit-2x;
|
gap: $unit-2x;
|
||||||
|
padding: $unit-2x;
|
||||||
|
padding-top: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.search-bar {
|
.search-bar {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue