Skip to content

Commit

Permalink
Merge pull request #51 from Kusitms-29th-ASAP/fix/#46
Browse files Browse the repository at this point in the history
fix(#46): Deploy 오류 - Signbox export 제거
  • Loading branch information
uiop5809 authored May 18, 2024
2 parents 4e2b081 + 47c0656 commit 8f5af6d
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/mypage/profile/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ const PlusButton = styled.button`
cursor: pointer;
`;

export const SignBox = styled.div`
const SignBox = styled.div`
width: 100%;
height: 168px;
margin-top: 12px;
Expand Down
16 changes: 15 additions & 1 deletion src/app/mypage/profile/signature/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
import styled from "styled-components";
import { theme } from "@/styles/theme";
import Topbar from "@/components/common/Topbar";
import { SignBox } from "../page";
import ListNumber from "@/components/common/ListNumber";
import { signData } from "@/data/mypageData";
import Subtitle from "@/components/signin/Subtitle";
Expand Down Expand Up @@ -202,3 +201,18 @@ const Box = styled.div`
const Primary = styled.div`
color: ${theme.colors.primary500};
`;

const SignBox = styled.div`
width: 100%;
height: 168px;
margin-top: 12px;
margin-bottom: 32px;
border-radius: 8px;
display: flex;
justify-content: center;
align-items: center;
border: 1px solid ${theme.colors.b200};
background: ${theme.colors.b100};
color: ${theme.colors.b400};
${(props) => props.theme.fonts.body3_m};
`;

0 comments on commit 8f5af6d

Please sign in to comment.