From cb71fb6907827bc68638aedb2162c0667c919e19 Mon Sep 17 00:00:00 2001 From: ivan_yakimkin Date: Thu, 16 Apr 2026 12:14:31 +0300 Subject: [PATCH] fix: restore horizontal layout with w-max wrapper --- src/shared/components/analytics/charts.tsx | 54 +++++++++++----------- 1 file changed, 28 insertions(+), 26 deletions(-) diff --git a/src/shared/components/analytics/charts.tsx b/src/shared/components/analytics/charts.tsx index 77599fbca2..a7649305fb 100644 --- a/src/shared/components/analytics/charts.tsx +++ b/src/shared/components/analytics/charts.tsx @@ -271,34 +271,35 @@ export function ActivityHeatmap({ activityMap }) { ref={scrollRef} className="overflow-x-auto" > -
- {monthLabels.map((m, i) => ( - - {m.label} - - ))} -
- -
-
- - Mon - - Wed - - Fri - +
+
+ {monthLabels.map((m, i) => ( + + {m.label} + + ))}
- {weeks.map((week, wi) => ( +
+
+ + Mon + + Wed + + Fri + +
+ + {weeks.map((week, wi) => (
{week.map((day, di) => (
+
Less