From db63a008f43ce2130ac4aeb8484a205013d9ca85 Mon Sep 17 00:00:00 2001 From: oib Date: Fri, 27 Feb 2026 11:52:04 +0100 Subject: [PATCH] fix(marketplace): unify header with global site header --- apps/marketplace-web/index.html | 3 +++ apps/marketplace-web/src/main.ts | 18 +----------------- apps/marketplace-web/src/style.css | 8 ++++++++ 3 files changed, 12 insertions(+), 17 deletions(-) diff --git a/apps/marketplace-web/index.html b/apps/marketplace-web/index.html index 61562817..6ddf0139 100644 --- a/apps/marketplace-web/index.html +++ b/apps/marketplace-web/index.html @@ -5,9 +5,12 @@ marketplace-web + +
+ diff --git a/apps/marketplace-web/src/main.ts b/apps/marketplace-web/src/main.ts index 9a5408e8..eec03fd3 100644 --- a/apps/marketplace-web/src/main.ts +++ b/apps/marketplace-web/src/main.ts @@ -23,23 +23,7 @@ if (!app) { app.innerHTML = `
- +
diff --git a/apps/marketplace-web/src/style.css b/apps/marketplace-web/src/style.css index 2fbbadc5..2f6f741c 100644 --- a/apps/marketplace-web/src/style.css +++ b/apps/marketplace-web/src/style.css @@ -555,3 +555,11 @@ body { font-size: 0.95rem; } } +/* Add padding to account for the fixed global header */ +main { + margin-top: 80px; + padding: 2rem; + max-width: 1200px; + margin-left: auto; + margin-right: auto; +}