Fleet UI: Fix select query not scrolling (#23208)

This commit is contained in:
RachelElysia 2024-10-25 09:35:13 -04:00 committed by GitHub
parent 52e3fc09f9
commit 3636fe2f79
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 15 additions and 9 deletions

View file

@ -1,14 +1,25 @@
// Similar to AddPolicyModal
.select-query-modal {
min-height: 400px;
height: 80%;
height: 90%;
overflow: hidden;
.modal__content-wrapper {
height: 95%;
}
.modal__content {
display: flex;
flex-direction: column;
gap: $pad-large;
height: 80%;
overflow: auto;
height: 100%;
}
&__query-selection {
overflow-y: auto;
.children-wrapper {
width: 680px;
}
}
&__no-queries {
@ -31,10 +42,4 @@
font-weight: $bold;
}
}
&__query-selection {
.children-wrapper {
width: 680px;
}
}
}

View file

@ -1,3 +1,4 @@
// Similar to SelectQueryModal
.add-policy-modal {
height: 90%;
overflow: hidden;