From 6b01c109d20782052c0f68dd15cb601c3bfa669c Mon Sep 17 00:00:00 2001 From: Sergey Kozyrenko Date: Wed, 8 Jul 2026 13:51:48 +0700 Subject: [PATCH] docs(breakpoints): drop the comment (768/1280 are recognizable Tailwind md/xl) Co-Authored-By: Claude Opus 4.8 --- frontend/src/hooks/use-breakpoint.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/frontend/src/hooks/use-breakpoint.ts b/frontend/src/hooks/use-breakpoint.ts index 74b5d682..ea95adeb 100644 --- a/frontend/src/hooks/use-breakpoint.ts +++ b/frontend/src/hooks/use-breakpoint.ts @@ -6,8 +6,6 @@ export enum BreakpointName { tablet = 'tablet', } -// px thresholds mirror Tailwind's `md` (768) and `xl` (1280) so JS layout switches line up with CSS `md:`/`xl:` -// variants — keep them equal (a component may pick either for the same responsive decision, e.g. the editor split). export const breakpoints = { [BreakpointName.desktop]: Infinity, [BreakpointName.mobile]: 768,