mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 01:18:42 +00:00
Fleet UI: Fix select query not scrolling (#23208)
This commit is contained in:
parent
52e3fc09f9
commit
3636fe2f79
2 changed files with 15 additions and 9 deletions
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
// Similar to SelectQueryModal
|
||||
.add-policy-modal {
|
||||
height: 90%;
|
||||
overflow: hidden;
|
||||
|
|
|
|||
Loading…
Reference in a new issue