Skip to content

Commit e53cc1c

Browse files
committed
try removing negative margin
1 parent c55e14b commit e53cc1c

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

packages/app-explorer/src/systems/Home/components/DailyTransaction.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@ const DailyTransaction = (blocks: DailyTransactionProps) => {
5656
width="14"
5757
height="14"
5858
viewBox="0 0 14 14"
59-
overflow="visible"
6059
fill="none"
6160
xmlns="http://www.w3.org/2000/svg"
6261
>
@@ -91,6 +90,7 @@ const DailyTransaction = (blocks: DailyTransactionProps) => {
9190
strokeDasharray="3 3"
9291
stroke="#333"
9392
vertical={false}
93+
overflow="visible"
9494
/>
9595
<XAxis
9696
dataKey="time"

packages/app-explorer/src/systems/Home/components/GasSpentChart/index.tsx

+1-2
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ const GasSpentChart = (gasSpent: GasSpentProps) => {
4646
width="14"
4747
height="14"
4848
viewBox="0 0 14 14"
49-
overflow="visible"
5049
fill="none"
5150
xmlns="http://www.w3.org/2000/svg"
5251
>
@@ -78,7 +77,7 @@ const GasSpentChart = (gasSpent: GasSpentProps) => {
7877
<ResponsiveContainer width="100%" height={170}>
7978
<LineChart
8079
data={chartData}
81-
margin={{ top: 10, left: -25, right: 0, bottom: 0 }}
80+
margin={{ top: 10, left: 0, right: 0, bottom: 0 }}
8281
>
8382
<CartesianGrid
8483
strokeDasharray="3 3"

0 commit comments

Comments
 (0)