Skip to content

Commit 0732e72

Browse files
committed
Chore: 추가하기 모바일 반응형 디자인 오류 수정
1 parent 3fc3d57 commit 0732e72

File tree

3 files changed

+12
-9
lines changed

3 files changed

+12
-9
lines changed

components/Link/AddLinkInput.tsx

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,14 @@ const AddLinkInput = ({ folderList }: FolderListData) => {
4646
className="sm:w-[190px] md:w-[530px] lg:w-[630px] overflow-hidden lg:ml-3 md:ml-3 sm:ml-[8px]"
4747
/>
4848
</div>
49-
<SubmitButton
50-
onClick={handleClick}
51-
className="w-[80px] h-[37px] text-[14px]"
52-
>
53-
추가하기
54-
</SubmitButton>
49+
<div className="w-[80px] h-[37px]">
50+
<SubmitButton
51+
className="w-full h-full text-[14px]"
52+
onClick={handleClick}
53+
>
54+
추가하기
55+
</SubmitButton>
56+
</div>
5557

5658
{isOpen && <Modal />}
5759
</div>

lib/api/axiosInstanceApi.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ const axiosInstance = axios.create({
55
});
66

77
export const proxy = axios.create({
8-
baseURL: "https://linkbrary-9-99.vercel.app",
8+
baseURL: "http://localhost:3000",
9+
//"https://linkbrary-9-99.vercel.app"
910
});
1011

1112
proxy.interceptors.response.use(

styles/globals.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
}
1212

1313
body {
14-
color: var(--black100);
15-
background-color: var(--white100);
14+
color: #000;
15+
background-color: #fff;
1616
font-family: "Pretendard-Regular", Arial, Helvetica, sans-serif;
1717
}
1818

0 commit comments

Comments
 (0)