Skip to content

Commit

Permalink
[refactor] link field (#86)
Browse files Browse the repository at this point in the history
* [feature] ์Šคํƒ€์ผ ์ˆ˜์ • ๋ฐ ์ฝ”๋“œ ํฌ๋งทํŒ… ์ ์šฉ

* [refactor] improve LinkFieldEdit component for better state management and error handling
  • Loading branch information
karnelll authored Nov 27, 2024
1 parent 01f1000 commit 6c794c0
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ export default function LinkEditPage() {
>
<Button
label="์ €์žฅ"
className={`w-fix h-[60px] py-[17px] rounded-lg text-base font-medium text-white ${
className={`w-[328px] h-[60px] py-[17px] rounded-lg text-lg font-['Pretendard'] font-medium bg-[#F73A2C] text-white ${
isSaveButtonEnabled
? "bg-black"
: "bg-[#e0e0e0] pointer-events-none"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ export default function LinksPage() {
<Button
label="์ €์žฅ"
onClick={handleSubmit}
className={`w-fix h-[60px] py-[17px] rounded-lg text-base font-medium text-white ${
className={`w-[328px] h-[60px] py-[17px] rounded-lg text-lg font-['Pretendard'] font-medium bg-[#F73A2C] text-white ${
isFormComplete && !isSubmitting
? "bg-black"
: "bg-[#d9d9d9] cursor-not-allowed"
Expand Down
14 changes: 7 additions & 7 deletions fe/tailwind.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -106,13 +106,13 @@ const config: Config = {
5: "#F8F8F8",
10: "#F0F0F0",
20: "#E4E4E4",
30: "#D8D8D8",
40: "#C8C8C8",
50: "#B8B8B8",
60: "#A8A8A8",
70: "#787878",
80: "#555555",
90: "#333333",
30: "#d8d8d8",
40: "#C6C6C6",
50: "#8E8E8E",
60: "#717171",
70: "#555555",
80: "#2d2d2d",
90: "##1D1D1D",
100: "#000000",
},
danger: {
Expand Down

0 comments on commit 6c794c0

Please sign in to comment.