We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51ca819 commit eb17b98Copy full SHA for eb17b98
src/ui/pages/AssetInfo/AssetChart/AssetChart.tsx
@@ -223,7 +223,6 @@ export function AssetChart({
223
position: 'relative',
224
left: -16,
225
width: 'calc(100% + 32px)',
226
- overflow: 'hidden',
227
}}
228
>
229
<Chart
@@ -237,7 +236,16 @@ export function AssetChart({
237
236
theme={theme}
238
currency={currency}
239
/>
240
- <div id={PULSE_CAP_CIRCLE_ID} className={styles.pulseCircle} />
+ <div
+ 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>
249
</div>
250
);
251
}
0 commit comments