From 141ece8a3efff31434058e84d60968c1566a2891 Mon Sep 17 00:00:00 2001 From: Carter Date: Mon, 16 Mar 2026 14:15:17 -0600 Subject: [PATCH] overlay overflow hidden so it stops affecting the scroll bar --- src/common/PulseBox.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/common/PulseBox.tsx b/src/common/PulseBox.tsx index 2cdc5ce..90c611c 100644 --- a/src/common/PulseBox.tsx +++ b/src/common/PulseBox.tsx @@ -8,6 +8,7 @@ const useStyles = makeStyles((_theme: Theme) => ({ position: 'relative', display: 'block', // Changed to block to respect Box margins width: 'fit-content', // Shrinks to child width + overflow: 'hidden', // Clip pulse animation so it doesn't affect parent layout '&::after': { content: '""', position: 'absolute',