fix(tailwind): reword ResizeHandles comment to avoid apostrophe+backtick in Tailwind JIT scan

Tailwind v4 JIT scanner mis-tokenised the comment 'Tauri`s `data-tauri-drag-region`'
as an unterminated string literal, breaking dev-server HMR. Comment rewritten
to avoid apostrophes near backticks. No behaviour change.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-19 16:43:09 +01:00
parent e248923f5d
commit d1d344b3dd

View File

@@ -5,10 +5,10 @@
// //
// Architecture: eight fixed-position divs are the click target for // Architecture: eight fixed-position divs are the click target for
// resize. Because the divs themselves are the event target (not any // resize. Because the divs themselves are the event target (not any
// ancestor), Tauri's `data-tauri-drag-region` delegated handler walks // ancestor), the delegated handler for data-tauri-drag-region walks
// the div's ancestors, finds no drag-region, and does not start a // the ancestors of the div, finds no drag-region, and does not start
// window move. This gives us a clean separation: resize wins on the // a window move. This gives us a clean separation: resize wins on
// edges, drag wins on the titlebar. // the edges, drag wins on the titlebar.
// //
// Hit zone sizes come from CSS custom properties so every Kon window // Hit zone sizes come from CSS custom properties so every Kon window
// across the app stays identical. See `--kon-resize-edge` and // across the app stays identical. See `--kon-resize-edge` and