File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ const EndpointsMenu: FC = () => {
36
36
< Content
37
37
side = "bottom"
38
38
align = "start"
39
- className = "mt-2 min-w-[340px] overflow-hidden rounded-lg border border-gray-100 bg-white shadow-lg dark:border-gray-700 dark:bg-gray-900 dark:text-white"
39
+ className = "mt-2 max-h-[65vh] min-w-[340px] overflow-y-auto rounded-lg border border-gray-100 bg-white shadow-lg dark:border-gray-700 dark:bg-gray-900 dark:text-white lg:max-h-[75vh] "
40
40
>
41
41
< EndpointItems endpoints = { endpoints } selected = { selected } />
42
42
</ Content >
Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ function SelectDropDownPop({
95
95
< Content
96
96
side = "bottom"
97
97
align = "start"
98
- className = "mt-2 max-h-60 min-w-full overflow-hidden overflow-y-auto rounded-lg border border-gray-100 bg-white shadow-lg dark:border-gray-700 dark:bg-gray-900 dark:text-white"
98
+ className = "mt-2 max-h-[52vh] min-w-full overflow-hidden overflow-y-auto rounded-lg border border-gray-100 bg-white shadow-lg dark:border-gray-700 dark:bg-gray-900 dark:text-white lg:max-h-[52vh] "
99
99
>
100
100
{ availableValues . map ( ( option ) => {
101
101
return (
@@ -105,7 +105,7 @@ function SelectDropDownPop({
105
105
value = { option }
106
106
selected = { ! ! ( value && value === option ) }
107
107
onClick = { ( ) => setValue ( option ) }
108
- > </ MenuItem >
108
+ / >
109
109
) ;
110
110
} ) }
111
111
</ Content >
You can’t perform that action at this time.
0 commit comments