We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5bacb38 commit 239a5aaCopy full SHA for 239a5aa
packages/ui/src/elements/ReactSelect/index.scss
@@ -36,7 +36,7 @@
36
}
37
38
.rs__menu {
39
- z-index: 4;
+ z-index: var(--z-select-menu);
40
border-radius: 0;
41
@include shadow-lg;
42
background: var(--theme-input-bg);
packages/ui/src/fields/Select/index.scss
@@ -3,6 +3,8 @@
3
@layer payload-default {
4
.field-type.select {
5
position: relative;
6
+ // Fixes a bug where the Select field's dropdown menu would be hidden behind the AppHeader in landscape mobile mode
7
+ z-index: 1;
8
9
10
html[data-theme='light'] {
packages/ui/src/scss/app.scss
@@ -34,6 +34,7 @@
34
--z-popup: 10;
35
--z-nav: 20;
--z-modal: 30;
+ --z-select-menu: 35;
--z-status: 40;
--accessibility-outline: 2px solid var(--theme-text);
0 commit comments