diff --git a/apps/web/src/screens/Player/Calendar/HeatMap.tsx b/apps/web/src/screens/Player/Calendar/HeatMap.tsx index aeff30d..0039999 100644 --- a/apps/web/src/screens/Player/Calendar/HeatMap.tsx +++ b/apps/web/src/screens/Player/Calendar/HeatMap.tsx @@ -11,10 +11,11 @@ export type DayData = { winrate: number } -export const cellSize = 20 -export const cellGap = 2 +const cellSize = 20 +const cellSizeCss = 'size-[20px]' +const cellGap = 2 export const monthGap = 8 -export const cellPlusGap = cellSize + cellGap +export const cellAndGap = cellSize + cellGap export const HeatMap = ({ monthesWithDays, @@ -26,7 +27,12 @@ export const HeatMap = ({ invisible?: boolean }) => { return ( -