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,