From a72d7cdf4a0c9f4a847ebb35ae32fe74b1075e35 Mon Sep 17 00:00:00 2001 From: sebastjanartic <45803536-sebastjanartic@users.noreply.replit.com> Date: Mon, 1 Sep 2025 18:03:00 +0000 Subject: [PATCH] Set content container width and center it for a better layout Update the main content container's max-width to 1400px and apply `margin: 0 auto` for centering, and replace `max-w-7xl` with the custom `.container` class in the Home page. Replit-Commit-Author: Agent Replit-Commit-Session-Id: 890577b1-c154-40a4-a177-a0c6d55320c3 Replit-Commit-Checkpoint-Type: full_checkpoint Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/8cc42625-c1f5-4e43-99bd-77f2c4dedee2/890577b1-c154-40a4-a177-a0c6d55320c3/SHCPaqp --- client/src/index.css | 2 +- client/src/pages/home.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/index.css b/client/src/index.css index 4c71203..41c7660 100644 --- a/client/src/index.css +++ b/client/src/index.css @@ -372,7 +372,7 @@ input[data-testid*="search"]::placeholder { /* Container for main content layout */ .container { - max-width: 1200px; /* največja širina */ + max-width: 1400px; /* največja širina */ margin: 0 auto; /* centriranje */ padding: 0 20px; /* malo notranjega roba */ } diff --git a/client/src/pages/home.tsx b/client/src/pages/home.tsx index c1ee49f..a3436dd 100644 --- a/client/src/pages/home.tsx +++ b/client/src/pages/home.tsx @@ -77,7 +77,7 @@ export default function Home() {
{/* STICKY HEADER */}
-
+
{/* Left side - Logo */}