From 7db9bb216c14381be22f55e1bb6977133eb31e0d Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Sedat=20=C3=96ZT=C3=9CRK?=
<76204082+iamsedatozturk@users.noreply.github.com>
Date: Mon, 13 Oct 2025 10:09:25 +0300
Subject: [PATCH] =?UTF-8?q?Layout=20yap=C4=B1s=C4=B1=20de=C4=9Fi=C5=9Ftiri?=
=?UTF-8?q?ldi.=20W-Full?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
ui/src/assets/styles/components/_menu-item.css | 2 +-
ui/src/components/layouts/ClassicLayout.tsx | 1 +
ui/src/components/layouts/DeckedLayout.tsx | 4 ++--
ui/src/components/layouts/ModernLayout.tsx | 1 +
ui/src/components/layouts/SimpleLayout.tsx | 2 +-
ui/src/components/layouts/StackedSideLayout.tsx | 1 +
ui/src/components/shared/Container.tsx | 2 +-
ui/src/constants/theme.constant.ts | 4 ++--
8 files changed, 10 insertions(+), 7 deletions(-)
diff --git a/ui/src/assets/styles/components/_menu-item.css b/ui/src/assets/styles/components/_menu-item.css
index c305f4ca..da69ac0f 100644
--- a/ui/src/assets/styles/components/_menu-item.css
+++ b/ui/src/assets/styles/components/_menu-item.css
@@ -1,5 +1,5 @@
.menu-item {
- @apply cursor-pointer font-medium rounded-md flex items-center w-full whitespace-nowrap gap-x-1 px-1;
+ @apply cursor-pointer font-medium rounded-md flex items-center w-full whitespace-nowrap gap-x-1 px-0.5;
&.menu-item-light {
@apply text-gray-600;
diff --git a/ui/src/components/layouts/ClassicLayout.tsx b/ui/src/components/layouts/ClassicLayout.tsx
index 20d04c6d..63a19c0d 100644
--- a/ui/src/components/layouts/ClassicLayout.tsx
+++ b/ui/src/components/layouts/ClassicLayout.tsx
@@ -43,6 +43,7 @@ const ClassicLayout = () => {
{sideNavCollapse ? : }
}
headerEnd={
}
diff --git a/ui/src/components/layouts/DeckedLayout.tsx b/ui/src/components/layouts/DeckedLayout.tsx
index e672171f..dec46178 100644
--- a/ui/src/components/layouts/DeckedLayout.tsx
+++ b/ui/src/components/layouts/DeckedLayout.tsx
@@ -38,12 +38,12 @@ const DeckedLayout = () => {
diff --git a/ui/src/components/layouts/ModernLayout.tsx b/ui/src/components/layouts/ModernLayout.tsx
index 47d4479b..244c7746 100644
--- a/ui/src/components/layouts/ModernLayout.tsx
+++ b/ui/src/components/layouts/ModernLayout.tsx
@@ -43,6 +43,7 @@ const ModernLayout = () => {
{sideNavCollapse ?
:
}
}
headerStart={
}
diff --git a/ui/src/components/layouts/SimpleLayout.tsx b/ui/src/components/layouts/SimpleLayout.tsx
index a17db573..83e87b42 100644
--- a/ui/src/components/layouts/SimpleLayout.tsx
+++ b/ui/src/components/layouts/SimpleLayout.tsx
@@ -38,7 +38,7 @@ const SimpleLayout = () => {
}
headerMiddle={
}
diff --git a/ui/src/components/layouts/StackedSideLayout.tsx b/ui/src/components/layouts/StackedSideLayout.tsx
index 2d76e6ad..971bc179 100644
--- a/ui/src/components/layouts/StackedSideLayout.tsx
+++ b/ui/src/components/layouts/StackedSideLayout.tsx
@@ -37,6 +37,7 @@ const StackedSideLayout = () => {
}
headerEnd={}
diff --git a/ui/src/components/shared/Container.tsx b/ui/src/components/shared/Container.tsx
index c90e76d5..f7c194b6 100644
--- a/ui/src/components/shared/Container.tsx
+++ b/ui/src/components/shared/Container.tsx
@@ -12,7 +12,7 @@ const Container = forwardRef((props: ContainerProps, ref) => {
return (
{children}
diff --git a/ui/src/constants/theme.constant.ts b/ui/src/constants/theme.constant.ts
index c5f533c2..3950af8a 100644
--- a/ui/src/constants/theme.constant.ts
+++ b/ui/src/constants/theme.constant.ts
@@ -20,8 +20,8 @@ export const SPLITTED_SIDE_NAV_SECONDARY_WIDTH = 250
export const SIDE_NAV_CONTENT_GUTTER = 'px-4'
export const LOGO_X_GUTTER = 'px-4'
export const HEADER_HEIGHT_CLASS = 'h-16'
-export const PAGE_CONTAINER_GUTTER_X = 'px-4 sm:px-6 md:px-8'
-export const PAGE_CONTAINER_GUTTER_Y = 'py-4 sm:py-6 md:px-8'
+export const PAGE_CONTAINER_GUTTER_X = 'px-4 sm:px-2 md:px-4'
+export const PAGE_CONTAINER_GUTTER_Y = 'py-4 sm:py-2 md:px-4'
export const THEME_ENUM = {
DIR_RTL: DIR_RTL,