Skip to content

Commit

Permalink
Fix: z-index in header (#5017)
Browse files Browse the repository at this point in the history
  • Loading branch information
JzoNgKVO authored Jun 7, 2024
1 parent 481e7bc commit ea0219a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion web/app/components/header/HeaderWrapper.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const HeaderWrapper = ({

return (
<div className={classNames(
'sticky top-0 left-0 right-0 z-20 flex flex-col bg-gray-100 grow-0 shrink-0 basis-auto min-h-[56px]',
'sticky top-0 left-0 right-0 z-30 flex flex-col bg-gray-100 grow-0 shrink-0 basis-auto min-h-[56px]',
s.header,
isBordered ? 'border-b border-gray-200' : '',
)}
Expand Down
2 changes: 1 addition & 1 deletion web/app/components/tools/provider-list.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ const ProviderList = () => {
<div className='relative flex overflow-hidden bg-gray-100 shrink-0 h-0 grow'>
<div className='relative flex flex-col overflow-y-auto bg-gray-100 grow'>
<div className={cn(
'sticky top-0 flex justify-between items-center pt-4 px-12 pb-2 leading-[56px] bg-gray-100 z-10 flex-wrap gap-y-2',
'sticky top-0 flex justify-between items-center pt-4 px-12 pb-2 leading-[56px] bg-gray-100 z-20 flex-wrap gap-y-2',
currentProvider && 'pr-6',
)}>
<TabSliderNew
Expand Down

0 comments on commit ea0219a

Please sign in to comment.