- fix: add line-clamp-1 on button text, closes #1585

- fix: add drag handle icon to panels
This commit is contained in:
Amruth Pillai
2023-11-26 15:37:58 +01:00
parent 062748eb5c
commit f090573147
2 changed files with 9 additions and 4 deletions

View File

@ -1,3 +1,4 @@
import { DotsSixVertical } from "@phosphor-icons/react";
import { cn } from "@reactive-resume/utils";
import * as PanelPrimitive from "react-resizable-panels";
@ -28,5 +29,9 @@ export const PanelResizeHandle = ({
)}
/>
</div>
<div className="pointer-events-none absolute inset-y-0 left-[-5px] z-50 flex items-center justify-center">
<DotsSixVertical size={14} opacity={0.75} />
</div>
</PanelPrimitive.PanelResizeHandle>
);