Skip to content

Commit e0635b8

Browse files
committed
fix: versionHistoryChart with mobile width < 400
1 parent e289501 commit e0635b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

site/src/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@
134134
type: "line",
135135
options: {
136136
parsing: false,
137-
aspectRatio: window.innerWidth < 600 ? 0.8 : 1.5,
137+
aspectRatio: window.innerWidth < 400 ? 0.75 : window.innerWidth < 600 ? 0.8 : 1.5,
138138
plugins: {
139139
legend: {
140140
align: "start",

0 commit comments

Comments
 (0)