From 9316ddf2f5ca7d0a08b06a9a6d548e9ad180fc4f Mon Sep 17 00:00:00 2001
From: Taha <62564400+mt190502@users.noreply.github.com>
Date: Fri, 21 Mar 2025 16:58:10 +0000
Subject: [PATCH] fix(analytics): fix the load of the analytics scripts (#1865)
---
quartz.layout.ts | 11 +++++++++--
1 files changed, 9 insertions(+), 2 deletions(-)
diff --git a/quartz.layout.ts b/quartz.layout.ts
index 3a39d0b..1c601a2 100644
--- a/quartz.layout.ts
+++ b/quartz.layout.ts
@@ -49,8 +49,15 @@
left: [
Component.PageTitle(),
Component.MobileOnly(Component.Spacer()),
- Component.Search(),
- Component.Darkmode(),
+ Component.Flex({
+ components: [
+ {
+ Component: Component.Search(),
+ grow: true,
+ },
+ { Component: Component.Darkmode() },
+ ],
+ }),
Component.Explorer(),
],
right: [],
--
Gitblit v1.10.0