Skip to content

Commit eb17b98

Browse files
committed
fix overflow problem
1 parent 51ca819 commit eb17b98

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

src/ui/pages/AssetInfo/AssetChart/AssetChart.tsx

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,6 @@ export function AssetChart({
223223
position: 'relative',
224224
left: -16,
225225
width: 'calc(100% + 32px)',
226-
overflow: 'hidden',
227226
}}
228227
>
229228
<Chart
@@ -237,7 +236,16 @@ export function AssetChart({
237236
theme={theme}
238237
currency={currency}
239238
/>
240-
<div id={PULSE_CAP_CIRCLE_ID} className={styles.pulseCircle} />
239+
<div
240+
style={{
241+
position: 'absolute',
242+
inset: 0,
243+
overflow: 'hidden',
244+
pointerEvents: 'none',
245+
}}
246+
>
247+
<div id={PULSE_CAP_CIRCLE_ID} className={styles.pulseCircle} />
248+
</div>
241249
</div>
242250
);
243251
}

0 commit comments

Comments
 (0)