diff --git a/index.css b/index.css index 33afb97..3524036 100644 --- a/index.css +++ b/index.css @@ -3931,7 +3931,7 @@ flex-direction: column; align-items: center; text-align: center; - max-width: 600px; + max-width: 500px; width: 100%; } @@ -3972,7 +3972,7 @@ width: 100%; display: flex; flex-direction: column; - gap: 16px; + gap: 10px; } .url-input-wrapper { @@ -4005,19 +4005,21 @@ .url-input-button { - padding: 12px 32px; - background-color: #AE72F9; - border: none; + margin: auto; + max-width: 400px; + width: 100%; + padding: 11px 16px; border-radius: 12px; - font-family: 'Pretendard', sans-serif; - font-size: 16px; + background-color: #AE72F9; + color: #ffffff; font-weight: 600; - color: #FFFFFF; + font-size: 16px; + letter-spacing: -0.006em; + box-shadow: 0px 4px 24px 0px rgba(174, 114, 249, 0.4); + transition: all var(--transition-normal); + border: none; cursor: pointer; - transition: background-color 0.2s ease; - white-space: nowrap; - display: block; - margin: 0 auto; + animation: button-glow 1.5s ease-in-out infinite; } .url-input-button:hover:not(:disabled) { @@ -4041,7 +4043,7 @@ font-family: 'Pretendard', sans-serif; font-size: 14px; color: #6AB0B3; - margin: 24px 0 0 0; + margin: 0 0 10px; } /* URL Input Dropdown */ diff --git a/src/components/Sidebar.tsx b/src/components/Sidebar.tsx index 0d8f8e1..9533886 100755 --- a/src/components/Sidebar.tsx +++ b/src/components/Sidebar.tsx @@ -82,7 +82,7 @@ const Sidebar: React.FC = ({ activeItem, onNavigate, onHome, userI { id: '대시보드', label: t('sidebar.dashboard'), disabled: false, icon: }, { id: '새 프로젝트 만들기', label: t('sidebar.newProject'), disabled: false, icon: }, { id: 'ADO2 콘텐츠', label: t('sidebar.ado2Contents'), disabled: false, icon: }, - // { id: '내 콘텐츠', label: t('sidebar.myContents'), disabled: true, icon: }, + { id: '내 콘텐츠', label: t('sidebar.myContents'), disabled: true, icon: }, { id: '콘텐츠 캘린더', label: '콘텐츠 캘린더', disabled: false, icon: }, { id: '내 정보', label: t('sidebar.myInfo'), disabled: false, icon: }, ]; diff --git a/src/pages/Dashboard/ContentCalendarContent.tsx b/src/pages/Dashboard/ContentCalendarContent.tsx index 9e6380d..0c13bdb 100644 --- a/src/pages/Dashboard/ContentCalendarContent.tsx +++ b/src/pages/Dashboard/ContentCalendarContent.tsx @@ -644,7 +644,7 @@ const ContentCalendarContent: React.FC = ({ onNavig
{sortedDateKeys.map(dateKey => (
= ({ onNavig return (
= ({ onAnalyze, onAutocomp
)}
- - {/* 검색 버튼 */} -
+ + {/* 안내 텍스트 */} +

+ {getGuideText()} +

+ {/* 에러 메시지 */} {error && (

{error}

)} - - {/* 안내 텍스트 */} -

- {getGuideText()} -

+ {/* 검색 버튼 */} + + {/* 테스트 버튼 (VITE_IS_TESTPAGE=true일 때만 표시) */}