small fix to dragbar

pull/4774/head
Joseph Izang 5 months ago
parent e96d4884fc
commit fbc46981f4
  1. 4
      libs/remix-ui/app/src/lib/remix-app/components/dragbar/dragbar.tsx

@ -28,9 +28,9 @@ const DragBar = (props: IRemixDragBarUi) => {
const height = window.innerHeight
if (height <= 781 && width <= 1150) {
setDragBarPosX(props.minWidth + 50)
setDragBarPosX(props.minWidth - 50)
} else {
setDragBarPosX(props.minWidth)
setDragBarPosX(props.minWidth + 50)
}
}
checkResolution()

Loading…
Cancel
Save