Skip to content

Commit 4d170ec

Browse files
committed
test
1 parent f6b181b commit 4d170ec

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

frontend/app/components/GlobalSearchBar.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,13 +109,13 @@ export default function GlobalSearchBar({
109109
createPortal(
110110
<div
111111
ref={dropdownRef}
112-
className="fixed max-h-[500px] overflow-y-auto rounded-xl border border-gray-700 bg-gray-800 shadow-2xl"
112+
className="fixed z-[99999] max-h-[500px] overflow-y-auto rounded-xl border border-gray-700 bg-gray-800 shadow-2xl"
113113
style={{
114114
position: 'fixed',
115115
top: dropdownPos.top,
116116
left: dropdownPos.left,
117117
width: dropdownPos.width,
118-
zIndex: 2147483647,
118+
isolation: 'isolate',
119119
}}
120120
>
121121
<SearchResultsDropdown

frontend/app/goal/components/GoalStepSection.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ type GoalStepSectionProps = {
1111
};
1212

1313
const baseSectionClasses =
14-
'space-y-6 rounded-3xl border border-gray-800/60 bg-gray-900/70 p-6 shadow-2xl shadow-black/40 backdrop-blur';
14+
'space-y-6 rounded-3xl border border-gray-800/60 bg-gray-900/70 p-6 shadow-2xl shadow-black/40 backdrop-blur relative z-0';
1515

1616
const GoalStepSection = ({ step, title, description, children, className }: GoalStepSectionProps) => {
1717
return (

0 commit comments

Comments
 (0)