add small border to resizer, and explain in docs

This commit is contained in:
vcoppe
2024-07-18 19:10:34 +02:00
parent 37334f734b
commit 27347a8399
2 changed files with 10 additions and 2 deletions

View File

@@ -35,7 +35,7 @@
<!-- svelte-ignore a11y-no-static-element-interactions -->
<div
class="{orientation === 'col'
? 'w-1 h-full cursor-col-resize'
: 'w-full h-1 cursor-row-resize'} {orientation}"
? 'w-1 h-full cursor-col-resize border-l'
: 'w-full h-1 cursor-row-resize border-t'} {orientation}"
on:pointerdown={handleMouseDown}
/>