Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file removed public/jingyu/jingyu01.jpg
Binary file not shown.
Binary file removed public/mocks/mock01.png
Binary file not shown.
Binary file removed public/mocks/mock02.png
Binary file not shown.
Binary file removed public/mocks/mock03.png
Binary file not shown.
Binary file removed public/mocks/mock04.png
Binary file not shown.
2 changes: 0 additions & 2 deletions src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ import Landing from "./pages/Landing";
import List from "./pages/List";
import Mypage from "./pages/Mypage";
import NotFound from "./pages/NotFound/index.jsx";
import Testpage from "./pages/Testpage/index.jsx";

function App() {
const lenisRef = useRef(null);
Expand Down Expand Up @@ -46,7 +45,6 @@ function App() {
<Route path="/" element={<DefaultLayout />}>
<Route path="/list" element={<List />} />
<Route path="/mypage" element={<Mypage />} />
<Route path="/testpage" element={<Testpage />} />
<Route path="/donation-detail/:id" element={<DonationDetail />} />
</Route>
<Route path="*" element={<NotFound />} />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export const errorWrapper = css`

@media(max-width: 476px) {
gap: 6px;
}
};
`;

/**
Expand All @@ -36,7 +36,7 @@ export const iconWrapper = css`
@media(max-width: 476px) {
width: 60px;
height: 60px;
}
};
`;

/**
Expand All @@ -48,7 +48,7 @@ export const black = css`
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: #000000; /* = 대신 : */
background: #000000;
width: 75px;
height: 75px;
border-radius: 50%;
Expand All @@ -58,8 +58,8 @@ export const black = css`
z-index: 1;

@media(max-width: 476px) {
width: 50px;
height: 50px;
width: 50px;
height: 50px;
}
`;

Expand Down Expand Up @@ -89,7 +89,7 @@ export const title = css`
@media(max-width: 476px) {
font-size: 16px;
font-weight: 800;
}
};
`;

/**
Expand All @@ -101,25 +101,26 @@ export const description = css`

@media(max-width: 476px) {
font-size: 13px;
}
};
`;

/**
* '다시 시도하기' 버튼 스타일
*/
export const button = css`
width: 140px;
height: 30px;
width: 140px;
height: 30px;

background: linear-gradient(90deg, #F86F65 0%, #FE5493 100%);
border-radius: 20px;
background: linear-gradient(90deg, #F86F65 0%, #FE5493 100%);
border-radius: 20px;

font-size: 12px;
font-weight: 400;
font-size: 12px;
font-weight: 400;

@media(max-width: 476px) {
width: 100px;
height: 25px;
@media(max-width: 476px) {
width: 100px;
height: 25px;

font-size: 10px;
}`;
font-size: 10px;
};
`;
2 changes: 1 addition & 1 deletion src/components/Error/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {
icon,
iconWrapper,
title,
} from "./Error.style";
} from "./Error.styles";

const ERROR_MESSAGE = {
donation: "후원 목록을",
Expand Down
2 changes: 1 addition & 1 deletion src/components/RadioButton/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ const contentWrapper = (className) => css`
justify-content: space-between;
width: 100%;
height: 100%;
padding: ${className === "vote" ? "0" : "0 23px 0 16px"};
padding: ${className === "vote" ? "0" : "0 23px 0 16px"};
`;

// 라디오 버튼 스타일 정의
Expand Down
41 changes: 0 additions & 41 deletions src/components/TestComponents.jsx

This file was deleted.

78 changes: 0 additions & 78 deletions src/mocks/donations.js

This file was deleted.

102 changes: 0 additions & 102 deletions src/mocks/idols.js

This file was deleted.

Loading