mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-13 16:22:59 +10:00
release: v4.0.4
This commit is contained in:
@ -37,13 +37,13 @@ export const BuilderLayout = () => {
|
||||
|
||||
if (isDesktop) {
|
||||
return (
|
||||
<div className="relative h-full w-full overflow-hidden">
|
||||
<div className="relative size-full overflow-hidden">
|
||||
<PanelGroup direction="horizontal">
|
||||
<Panel
|
||||
minSizePixels={48}
|
||||
maxSizePercentage={45}
|
||||
defaultSizePercentage={30}
|
||||
onResize={({ sizePercentage }) => leftSetSize(sizePercentage)}
|
||||
minSize={25}
|
||||
maxSize={45}
|
||||
defaultSize={30}
|
||||
onResize={leftSetSize}
|
||||
className={cn("z-10 bg-background", !leftHandle.isDragging && "transition-[flex]")}
|
||||
>
|
||||
<LeftSidebar />
|
||||
@ -60,10 +60,10 @@ export const BuilderLayout = () => {
|
||||
onDragging={rightHandle.setDragging}
|
||||
/>
|
||||
<Panel
|
||||
minSizePixels={48}
|
||||
maxSizePercentage={45}
|
||||
defaultSizePercentage={30}
|
||||
onResize={({ sizePercentage }) => rightSetSize(sizePercentage)}
|
||||
minSize={25}
|
||||
maxSize={45}
|
||||
defaultSize={30}
|
||||
onResize={rightSetSize}
|
||||
className={cn("z-10 bg-background", !rightHandle.isDragging && "transition-[flex]")}
|
||||
>
|
||||
<RightSidebar />
|
||||
|
||||
Reference in New Issue
Block a user