Skip to content

Commit

Permalink
🐛 fix loading bee blocking top bar
Browse files Browse the repository at this point in the history
  • Loading branch information
anuejn committed Dec 2, 2023
1 parent c81003d commit 31a5f74
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion frontend/src/editor/player.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ export function PlayerBar({ documentId, editor }: { documentId: string; editor:

<div
className={clsx(
'fixed bottom-0 inset-x-6 mx-auto z-30',
'fixed bottom-0 inset-x-6 mx-auto z-20',
'max-w-screen-xl height-8 my-2',
'flex',
'p-2',
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/editor/transcription_editor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ export function TranscriptionEditor({
<>
<div
className={clsx(
'grow-[2] fixed left-0 top-0 flex items-center justify-center w-full h-full bg-white dark:bg-neutral-900 z-50',
'grow-[2] fixed left-0 top-0 flex items-center justify-center w-full h-full bg-white dark:bg-neutral-900 z-30',
)}
>
<LoadingBee size={200} />
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/pages/document.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ export function DocumentPage({
<Helmet>
<title>{data?.name}</title>
</Helmet>
<TopBar className="!items-start">
<TopBar className="!items-start z-40 relative">
<TopBarPart className={isLoggedIn ? 'sticky left-4 -ml-12 !items-start' : ''}>
{isLoggedIn && (
<IconButton
Expand Down

0 comments on commit 31a5f74

Please sign in to comment.