diff --git a/copyparty/web/browser.css b/copyparty/web/browser.css index 97e674a6..f936bf49 100644 --- a/copyparty/web/browser.css +++ b/copyparty/web/browser.css @@ -4382,10 +4382,10 @@ html.e #docul { margin-left: 0 !important; } html.e #wrap { - transform: translateX(calc((var(--negative-space) * 2) - 1.2em)); + transform: translateX(calc((var(--negative-space) * 2) - .2em)); padding-right: var(--negative-space); position: relative; - margin-right: calc((var(--negative-space) * 2) - 1.1em); + margin-right: calc((var(--negative-space) * 2) - .1em); margin-top: var(--negative-space); margin-left: 1.2em; /*overflow-x: auto; fix for OOB table when screen space is limited (mobile), but removes sticky header*/ diff --git a/copyparty/web/browser.js b/copyparty/web/browser.js index 3b39a4ca..2fa363be 100644 --- a/copyparty/web/browser.js +++ b/copyparty/web/browser.js @@ -7522,7 +7522,7 @@ var treectl = (function () { nq = Math.max(nq, get_evpath().split('/').length - 2); var iw = (treesz + Math.max(0, nq)), w = iw + 'em', - w2 = (iw + 2) + 'em'; + w2 = (iw + 1) + 'em'; setcvar('--nav-sz', w); ebi('tree').style.width = w;