Skip to content

Commit

Permalink
style: another perf
Browse files Browse the repository at this point in the history
  • Loading branch information
mlhiter committed Jan 15, 2025
1 parent 49b7323 commit cdd0418
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/providers/devbox/components/ScriptCode.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const ScriptCode = ({
color={'grayModern.900'}
fontWeight={400}
_hover={{
cursor: 'default'
cursor: 'pointer'
}}
leftIcon={
<MyIcon
Expand Down
10 changes: 9 additions & 1 deletion frontend/providers/devbox/components/modals/SshConnectModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,15 @@ const SshConnectModal = ({
>
<ModalHeader pl={10}>{t('jetbrains_guide_config_ssh')}</ModalHeader>
<ModalCloseButton top={'10px'} right={'10px'} />
<ModalBody pb={6} overflowY={'auto'}>
<ModalBody
pb={6}
overflowY={'auto'}
sx={{
'&::-webkit-scrollbar': {
display: 'none'
}
}}
>
<Tabs
onChange={(index) => setActiveTab(index)}
mb={4}
Expand Down

0 comments on commit cdd0418

Please sign in to comment.