Updated the MAX_WIDTH_CLASSES constant

This commit is contained in:
Imad Saddik 2025-12-15 22:02:42 +01:00
parent 20f5f32d4d
commit c638bfeb21
2 changed files with 4 additions and 4 deletions

View File

@ -114,9 +114,9 @@
--color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
--color-sidebar-border: var(--sidebar-border);
--color-sidebar-ring: var(--sidebar-ring);
--breakpoint-3xl: 120rem; /* 1920px */
--breakpoint-4xl: 150rem; /* 2400px */
--breakpoint-5xl: 180rem; /* 2880px */
--breakpoint-3xl: 120rem; /* 1920px */
--breakpoint-4xl: 150rem; /* 2400px */
--breakpoint-5xl: 180rem; /* 2880px */
}
@layer base {

View File

@ -1,4 +1,4 @@
export const MAX_WIDTH_CLASSES =
'max-w-[48rem] md:max-w-[60rem] min-[1920px]:max-w-[80rem] min-[2560px]:max-w-[120rem]';
'max-w-[48rem] md:max-w-[60rem] xl:max-w-[70rem] 2xl:max-w-[80rem] 3xl:max-w-[90rem] 4xl:max-w-[100rem] 5xl:max-w-[150rem]';
export const DEFAULT_MAX_WIDTH_CLASS = 'max-w-[48rem]';