ScrolltoBottomButton: improve

This commit is contained in:
Enrico Ros
2024-03-15 00:40:01 -07:00
parent b9b946c35f
commit 6d744dfb7e
@@ -19,7 +19,9 @@ const buttonSx: SxProps = {
// style it
backgroundColor: 'background.surface',
borderRadius: '50%',
boxShadow: 'md',
border: '1px solid',
borderColor: 'neutral.500',
boxShadow: 'sm',
// fade it in when hovering
// transition: 'all 0.15s',
@@ -43,7 +45,7 @@ export function ScrollToBottomButton() {
return null;
return (
<IconButton aria-label='Scroll To Bottom' variant='outlined' onClick={handleStickToBottom} sx={buttonSx}>
<IconButton aria-label='Scroll To Bottom' variant='plain' onClick={handleStickToBottom} sx={buttonSx}>
<KeyboardDoubleArrowDownIcon />
</IconButton>
);