From 179a090ce76526146518d4d9d6e0d29679aa2b56 Mon Sep 17 00:00:00 2001 From: smanylov Date: Mon, 19 Jan 2026 12:18:32 +0700 Subject: [PATCH] edit main-page width --- src/app/[locale]/page.tsx | 4 ++-- src/app/styles/global-styles.scss | 10 ++++++++++ 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/src/app/[locale]/page.tsx b/src/app/[locale]/page.tsx index 523a14f..72217f0 100644 --- a/src/app/[locale]/page.tsx +++ b/src/app/[locale]/page.tsx @@ -4,10 +4,10 @@ import CasesList from '@/app/ui/main-page/cases-list'; export default function Home() { return ( -
+
-
+ ); } diff --git a/src/app/styles/global-styles.scss b/src/app/styles/global-styles.scss index 6343433..2d695a4 100644 --- a/src/app/styles/global-styles.scss +++ b/src/app/styles/global-styles.scss @@ -52,6 +52,16 @@ } } +.main-container { + @media (min-width: 1536pxrem) { + max-width: 1536px; + } + + @media (min-width: 1280px) { + max-width: 1280px; + } +} + .stats-dashboard { display: grid; grid-template-columns: repeat(1, minmax(0, 1fr));