fix(dashboard): prevent resize handle overlap and clipping

- Change .rpg-widget overflow from hidden to visible to prevent handle clipping
- Reduce horizontal handle offset from -6px to -3px to prevent overlap
- Keep vertical offset at -6px (adequate gap between rows)
- Handles now have 6px clearance when widgets are side-by-side (12px gap - 3px - 3px)
This commit is contained in:
Lucas 'Paperboy' Rose-Winters
2025-10-25 19:04:36 +11:00
parent 4ea1c55a75
commit 101404d617
2 changed files with 5 additions and 3 deletions
+1 -1
View File
@@ -1189,7 +1189,7 @@ body:has(.rpg-panel.rpg-position-left) #sheld {
/* Base widget container - ensures content stays within bounds */
.rpg-widget {
box-sizing: border-box;
overflow: hidden;
overflow: visible; /* Allow resize handles to extend beyond widget bounds */
display: flex;
flex-direction: column;