Skip to content

Commit 365c6e6

Browse files
authored
style: add padding to Debugger and ProfileDetail sections for improve… (#125)
1 parent 1c59dba commit 365c6e6

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/pages/sidepanel/sections/Debugger.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ const Debugger: React.FC<DebuggerProps> = ({ tagIsInstalled, tagConfig, getter,
3030
<Stack alignItems={'flex-start'} justifyContent={'flex-start'} height={'100%'} width={'100%'}>
3131
<SectionHeader icon={<DebugIcon />} title={appContent.sectionHeaders.debug} />
3232
<TabNavigation tabs={tabs} value={getter} onChange={handleSetTab} />
33-
<Box flexGrow={1} width={'100%'} overflow={'auto'} sx={{ height: 0 }}>
33+
<Box flexGrow={1} width={'100%'} overflow={'auto'} sx={{ height: 0, paddingTop: '0.75rem' }}>
3434
<CustomTabPanel value={getter} index={0}>
3535
<TagConfig tagConfig={tagConfig} />
3636
</CustomTabPanel>

src/pages/sidepanel/sections/ProfileDetail.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ const ProfileDetail: React.FC<ProfileDetailTabProps> = ({ profile }) => {
5050
};
5151

5252
return (
53-
<Stack spacing={2} width="100%">
53+
<Stack spacing={2} width="100%" paddingTop={'0.75rem'}>
5454
<StyledPanel>
5555
<TreeDisplay data={profile?.data} collapsed={2} />
5656
</StyledPanel>

0 commit comments

Comments
 (0)