Skip to content

Commit

Permalink
fix :: 이미지 크기와 의존성
Browse files Browse the repository at this point in the history
  • Loading branch information
dutexion committed Feb 28, 2024
1 parent 9925f24 commit 53a2dbe
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions packages/user/src/components/DeployContainter.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { theme } from '@merge/design-system';
import styled from '@emotion/styled';
import React from 'react';

type containerType = {
container_name: string;
Expand Down
5 changes: 4 additions & 1 deletion packages/user/src/pages/MyPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,9 @@ export const MyPage = () => {
if (!element.is_hidden) return;
return (
<Project key={index}>
<img src={element.logo} />
<Link to={`/project/${element.id}`}>
<img src={element.logo} />
</Link>
<div>
{/* {element.admin && <Badge>관리자</Badge>} */}
<div className="first">{element.project_name}</div>
Expand Down Expand Up @@ -214,6 +216,7 @@ const Wrapper = styled.div`
`;

const Header = styled.div`
flex: none;
width: 1128px;
height: 70px;
padding: 0 40px;
Expand Down

0 comments on commit 53a2dbe

Please sign in to comment.