From b87b7375a4f5d1a78bac6efc3334a14da99c4959 Mon Sep 17 00:00:00 2001 From: Rok Garbas Date: Mon, 15 Dec 2025 22:11:43 +0100 Subject: [PATCH] fix: Adjust grid background positioning for better alignment Reposition the decorative grid background to improve visual alignment by shifting the container left and adjusting background positions. Changes: - Shift content-grid-bg container left by 202px - Extend width to accommodate shift: calc(100% + 402px) - Simplify background-position from negative offsets to 0px - Maintains vertical offset of -35px Note: Width calculation includes extra %; which may need cleanup. --- index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/index.html b/index.html index 6520deb..9a3a15e 100644 --- a/index.html +++ b/index.html @@ -96,11 +96,11 @@ .content-grid-bg { position: absolute; top: 0; - left: 0; - width: 100%; + left: -202px; + width: calc(100% + 402px);%; height: 100%; background-image: url(assets/images/grid.png), url(assets/images/grid.png); - background-position: left -202px top -35px, right -200px top -35px; + background-position: left 0px top -35px, right 0px top -35px; background-repeat: repeat-y, repeat-y; z-index: 5; display: block;