Skip to content

Commit

Permalink
fix : layout
Browse files Browse the repository at this point in the history
  • Loading branch information
pinomaker-hoo committed Nov 23, 2023
1 parent 27c0050 commit 6c02338
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/components/ContentBox/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export const ContextBox = ({ children, type }: PropsType) => {
return (
<Box
sx={{
width: type === 'SIDE' ? '79%' : '98%',
width: type === 'SIDE' ? '84%' : '98%',
height: '96%',
backgroundColor: Color.smallPurple,
borderRadius: 10,
Expand Down
4 changes: 2 additions & 2 deletions src/components/WorkspaceDropdown/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ const WorkspaceDowndown = ({ profile }: PropsType) => {
<Button onClick={handleClick}>
<Box sx={{ display: 'flex', pt: 5 }}>
<ImageBox
width={60}
height={60}
width={40}
height={40}
image={profile}
alt="workspace image"
borderRadius={3}
Expand Down
2 changes: 1 addition & 1 deletion src/layouts/vertical/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const VerticalNavigation = () => {
return (
<Box
sx={{
width: '100px',
width: '80px',
height: '100vh',
}}
>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/api-page/api-page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ const ApiPageView = ({
alignItems: 'center',
}}
>
<Box sx={{ width: '20%' }}>
<Box sx={{ width: '15%' }}>
<SideMenu
data={data}
handleSelectedCollection={handleSelectedCollection}
Expand Down
2 changes: 1 addition & 1 deletion src/pages/api-page/sideMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ const SideMenu = ({
display: 'flex',
alignItems: 'center',
my: 1,
pl: 7,
pl: 4,
}}
key={_.id}
>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/erd-page/erd-page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const ErdPageView = () => {
alignItems: 'center',
}}
>
<Box sx={{ width: '20%' }}>
<Box sx={{ width: '15%' }}>
<SideMenu />
</Box>
<ContextBox type="SIDE">
Expand Down
2 changes: 1 addition & 1 deletion src/pages/ticket-page/ticket-page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const TicketPageView = ({}: PropsType) => {
alignItems: 'center',
}}
>
<Box sx={{ width: '20%' }}>
<Box sx={{ width: '15%' }}>
<SideMenu />
</Box>
<ContextBox type="SIDE">
Expand Down

0 comments on commit 6c02338

Please sign in to comment.