Skip to content

Commit

Permalink
fix z-index of tutorial
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasfcosta committed Jan 4, 2025
1 parent 0bed3ff commit d31e06e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion apps/web/src/components/Tutorial.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ export const Tutorial = (props: TutorialProps) => {
return (
<div
className={clsx(
'absolute bottom-0 right-4 bg-white rounded-lg w-80 z-20 border border-gray-200 font-sans overflow-hidden shadow-sm transition-transform duration-300',
'absolute bottom-0 right-4 bg-white rounded-lg w-80 z-30 border border-gray-200 font-sans overflow-hidden shadow-sm transition-transform duration-300',
isWithinDocumentPage ? '-translate-y-14' : '-translate-y-4'
)}
>
Expand Down
1 change: 1 addition & 0 deletions apps/web/src/components/v2Editor/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1522,6 +1522,7 @@ const Editor = (props: Props) => {
{domBlocks.length === 0 && (
<div className="w-full">
<PlusButton
isLast
alwaysOpen
onAddBlock={addBlockToBottom}
isEditable={props.isEditable}
Expand Down

0 comments on commit d31e06e

Please sign in to comment.