Skip to content

Commit c12812b

Browse files
Update offsetY calculation in EcosystemGrid
Adjust offsetY calculation to change vertical positioning.
1 parent ffce0c1 commit c12812b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/ecosystem-grid/EcosystemGrid.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ export function EcosystemGrid({ data }: EcosystemGridProps) {
150150

151151
// Center the chart
152152
const offsetX = Math.floor((EXPORT_WIDTH - chartWidth) / 2)
153-
const offsetY = HEADER_HEIGHT + PADDING + Math.floor((availableHeight - chartHeight) / 2) + 60
153+
const offsetY = HEADER_HEIGHT + PADDING + Math.floor((availableHeight - chartHeight) / 2) + 100
154154

155155
// Create canvas - fixed 16:9
156156
const canvas = document.createElement('canvas')

0 commit comments

Comments
 (0)