fix: add pointerEvents to Content component for better interaction handling

- Included pointerEvents: 'none' in the Box of the Content component to prevent user interactions when necessary, enhancing overall UI behavior.
This commit is contained in:
sebseb7
2025-09-08 00:10:19 +02:00
parent 29a4bfc1c6
commit 3bf80ce3d7

View File

@@ -496,7 +496,8 @@ class Content extends Component {
height: 32,
display: 'flex',
alignItems: 'center',
justifyContent: 'center'
justifyContent: 'center',
pointerEvents: 'none'
}}>
<KeyboardArrowUpIcon sx={{ color: 'white', fontSize: '1.2rem' }} />
</Box>