- upgrade react-resizable-panels to latest version

- update translations
- remove cypress
- add await to all return blocks
This commit is contained in:
Amruth Pillai
2023-11-19 09:52:55 +01:00
parent 9c4db2956b
commit 8b217dfcfa
95 changed files with 4162 additions and 4213 deletions

View File

@ -1,4 +1,3 @@
import { DotsSixVertical } from "@phosphor-icons/react";
import { cn } from "@reactive-resume/utils";
import * as PanelPrimitive from "react-resizable-panels";
@ -24,12 +23,10 @@ export const PanelResizeHandle = ({
<div className="flex h-full items-center justify-center">
<div
className={cn(
"absolute z-20 rounded-lg bg-transparent py-2 opacity-25 transition-all hover:bg-info hover:opacity-100",
"absolute inset-y-0 left-0 z-50 w-1 rounded-lg pl-1 transition-all hover:bg-info hover:opacity-100",
isDragging && "bg-info opacity-100",
)}
>
<DotsSixVertical weight="bold" />
</div>
/>
</div>
</PanelPrimitive.PanelResizeHandle>
);