From ff9e76676d9a18c92a9db5662316d717ef8f6caf Mon Sep 17 00:00:00 2001 From: Filip Rojek Date: Thu, 28 Aug 2025 13:09:39 +0200 Subject: [PATCH] fix(home.scss): prevent project content from breaking on large screens - Fixes layout issues on higher resolutions where content stretched incorrectly --- sass/home.scss | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sass/home.scss b/sass/home.scss index 57ca1df..2d3f674 100644 --- a/sass/home.scss +++ b/sass/home.scss @@ -35,7 +35,9 @@ .project { display: flex; flex-direction: column; - margin: 1rem 30%; + margin: 1rem 0; + width: 100%; + max-width: 40%; gap: 1rem; .title { font-size: 1.2rem;