small fix to dragbar

pull/5370/head
Joseph Izang 6 months ago
parent 67b910d053
commit 6ce32cb671
  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