We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb9cd1b commit eabb149Copy full SHA for eabb149
1 file changed
src/authz-module/index.scss
@@ -14,6 +14,15 @@
14
.pgn__data-table tr:has(span[data-role="Global Staff"]) {
15
background-color: var(--pgn-color-primary-200);
16
}
17
+/*
18
+ This is a workaround to fix the height of the table when the dropdown menu is open,
19
+ to prevent the table from collapsing and hiding the dropdown menu.
20
+ The min-height value is set to 700px based on the height of the table and the dropdown menu,
21
+ but it can be adjusted if needed.
22
+*/
23
+ .pgn__data-table-layout-wrapper:has(.dropdown-menu.show) {
24
+ min-height: 700px;
25
+ }
26
27
hr {
28
border-right: var(--pgn-size-border-width) solid var(--pgn-color-border);
0 commit comments