diff --git a/app/assets/javascripts/directives/views/panelResizer.ts b/app/assets/javascripts/directives/views/panelResizer.ts index 791e3fcb9..99d054ea5 100644 --- a/app/assets/javascripts/directives/views/panelResizer.ts +++ b/app/assets/javascripts/directives/views/panelResizer.ts @@ -140,7 +140,7 @@ class PanelResizerCtrl implements PanelResizerScope { return; } this.resizerColumn = this.$element[0]; - this.currentMinWidth = this.minWidth || this.resizerColumn.offsetWidth; + this.currentMinWidth = this.minWidth || (this.resizerColumn.offsetWidth + 2); this.pressed = false; this.startWidth = this.panel.scrollWidth; this.lastDownX = 0; diff --git a/app/assets/stylesheets/_main.scss b/app/assets/stylesheets/_main.scss index 6ab0cf0bb..a173d667c 100644 --- a/app/assets/stylesheets/_main.scss +++ b/app/assets/stylesheets/_main.scss @@ -136,7 +136,7 @@ $footer-height: 32px; top: 0; right: 0; z-index: $z-index-panel-resizer; - width: 2px; + width: 4px; height: 100%; position: absolute; cursor: col-resize; diff --git a/package.json b/package.json index 88dd40bfa..fe305149b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "standard-notes-web", - "version": "3.8.5", + "version": "3.8.6", "license": "AGPL-3.0-or-later", "repository": { "type": "git",