Frontmatter
| id | 8665 |
| title | Refactor HomeCanvas Styling & Pointer Events |
| state | Closed |
| labels | designrefactoring |
| assignees | tobiu |
| createdAt | Jan 15, 2026, 2:19 AM |
| updatedAt | Jan 15, 2026, 2:31 AM |
| githubUrl | https://github.com/neomjs/neo/issues/8665 |
| author | tobiu |
| commentsCount | 1 |
| parentIssue | 8661 |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Jan 15, 2026, 2:31 AM |
Refactor HomeCanvas Styling & Pointer Events
tobiu assigned to @tobiu on Jan 15, 2026, 2:25 AM

tobiu
Jan 15, 2026, 2:31 AM
Input from Gemini 3 Pro:
✦ I have refactored the HomeCanvas styling and interaction model.
Changes:
- SCSS Architecture: Moved inline styles to
resources/scss/src/apps/portal/home/HomeCanvas.scss.- Pointer Events: Added
pointer-events: noneto the canvas to ensure it doesn't block interactions with the "Get Started" buttons.- Interaction Model: Since the canvas ignores mouse events, I moved the
mousemovelistener to the parent container (MainNeo).
MainNeonow captures mouse moves and forwards them programmatically toHomeCanvas.onMouseMove().- This ensures the "Neural Galaxy" physics still react to the mouse (repulsion & parallax) without blocking UI clicks.
The implementation is now clean, themable, and functional.
tobiu closed this issue on Jan 15, 2026, 2:31 AM
tobiu added parent issue #8661 on Jan 15, 2026, 2:31 AM
resources/scss/src/apps/portal/view/home/HomeCanvas.scss.HomeCanvas.mjsto the SCSS file.pointer-events: noneto allow scrolling and clicking through the canvas.styleconfig fromHomeCanvas.mjs.