From 275b7619e8a19a02f420752bcea41a19b4d3c662 Mon Sep 17 00:00:00 2001 From: kamycoding Date: Tue, 11 Aug 2026 18:12:30 +0200 Subject: [PATCH 1/2] fix: improve hero social vertical spacing --- src/app/pages/home/sections/hero/hero.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/app/pages/home/sections/hero/hero.css b/src/app/pages/home/sections/hero/hero.css index fef5221..130d8fc 100644 --- a/src/app/pages/home/sections/hero/hero.css +++ b/src/app/pages/home/sections/hero/hero.css @@ -245,7 +245,8 @@ .hero__socials { position: absolute; - bottom: 110px; + /* Tracks the width-driven cover scale of the bottom-anchored artwork. */ + bottom: max(110px, 5.882vw); left: max(72px, calc((100% - var(--hero-desktop-content-width)) / 2 + 72px)); display: flex; width: 40px; From 522d85a61a52211da0a97fdfe782d3a730c94b4c Mon Sep 17 00:00:00 2001 From: kamycoding Date: Tue, 11 Aug 2026 19:03:52 +0200 Subject: [PATCH 2/2] chore: disable Angular CLI analytics --- angular.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/angular.json b/angular.json index 97ca8ac..a85d15d 100644 --- a/angular.json +++ b/angular.json @@ -3,7 +3,10 @@ "version": 1, "cli": { "packageManager": "npm", - "schematicCollections": ["angular-eslint"] + "schematicCollections": [ + "angular-eslint" + ], + "analytics": false }, "newProjectRoot": "projects", "projects": {