Skip to content

Commit

Permalink
Merge pull request #178 from boostcampwm-2024/bug-fe-#177
Browse files Browse the repository at this point in the history
에디터 블록 drag handle이 예상과 다른 곳에 위치하는 문제 수정
  • Loading branch information
yewonJin authored Nov 17, 2024
2 parents 6868f2b + fa62e2a commit 16b2891
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion frontend/src/components/layout/EditorLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ const EditorLayout = ({ children }: EditorLayoutProps) => {

return (
<div
className={`absolute right-0 h-[720px] w-[520px] transform rounded-bl-lg rounded-br-lg rounded-tr-lg border bg-white shadow-lg transition-transform duration-100 ease-in-out ${isPanelOpen ? "translate-x-0" : "translate-x-full"}`}
className={`absolute right-0 h-[720px] w-[520px] rounded-bl-lg rounded-br-lg rounded-tr-lg border bg-white shadow-lg transition-transform duration-100 ease-in-out ${
isPanelOpen ? "transform-none" : "translate-x-full"
}`}
>
<div className="h-full overflow-auto">{children}</div>

Expand Down

0 comments on commit 16b2891

Please sign in to comment.