diff --git a/frontend/src/components/pc/admin/bot/FestivalBotDialog.jsx b/frontend/src/components/pc/admin/bot/FestivalBotDialog.jsx index b8fa526..8b68d60 100644 --- a/frontend/src/components/pc/admin/bot/FestivalBotDialog.jsx +++ b/frontend/src/components/pc/admin/bot/FestivalBotDialog.jsx @@ -97,7 +97,7 @@ function Dropdown({ value, options, onChange, placeholder = '선택' }) { setIsOpen(false); }} className={`w-full px-4 py-2 text-left hover:bg-gray-50 transition-colors text-sm ${ - value === opt.value ? 'bg-emerald-50 text-emerald-600' : '' + value === opt.value ? 'bg-amber-50 text-amber-600' : '' }`} > {opt.label} @@ -216,8 +216,8 @@ function FestivalBotDialog({ isOpen, onClose, botId = null, onSuccess }) { {/* 헤더 */}
-
- +
+

{isEdit ? '축제 봇 수정' : '축제 봇 추가'} @@ -234,7 +234,7 @@ function FestivalBotDialog({ isOpen, onClose, botId = null, onSuccess }) { {/* 본문 */} {botLoading ? (
- +
) : (
@@ -248,7 +248,7 @@ function FestivalBotDialog({ isOpen, onClose, botId = null, onSuccess }) { value={name} onChange={(e) => setName(e.target.value)} placeholder="대학 축제 봇" - className="w-full px-4 py-2.5 border border-gray-200 rounded-lg focus:outline-none focus:ring-2 focus:ring-emerald-500/20 focus:border-emerald-500" + className="w-full px-4 py-2.5 border border-gray-200 rounded-lg focus:outline-none focus:ring-2 focus:ring-amber-500/20 focus:border-amber-500" />

@@ -262,7 +262,7 @@ function FestivalBotDialog({ isOpen, onClose, botId = null, onSuccess }) { value={searchUrl} onChange={(e) => setSearchUrl(e.target.value)} placeholder="https://memogipost.tistory.com/search/프로미스나인" - className="w-full px-4 py-2.5 border border-gray-200 rounded-lg focus:outline-none focus:ring-2 focus:ring-emerald-500/20 focus:border-emerald-500" + className="w-full px-4 py-2.5 border border-gray-200 rounded-lg focus:outline-none focus:ring-2 focus:ring-amber-500/20 focus:border-amber-500" />

축제 정보를 수집할 검색 페이지 URL을 입력하세요 @@ -289,7 +289,7 @@ function FestivalBotDialog({ isOpen, onClose, botId = null, onSuccess }) { @@ -304,7 +304,7 @@ function FestivalBotDialog({ isOpen, onClose, botId = null, onSuccess }) { onClick={() => toggleMonth(m)} className={`py-2 rounded-lg text-sm font-medium transition-colors ${ on - ? 'bg-emerald-500 text-white' + ? 'bg-amber-500 text-white' : 'bg-gray-100 text-gray-400 hover:bg-gray-200' }`} > @@ -334,7 +334,7 @@ function FestivalBotDialog({ isOpen, onClose, botId = null, onSuccess }) { type="submit" onClick={handleSubmit} disabled={!name.trim() || !searchUrl.trim() || submitting || botLoading} - className="px-4 py-2.5 bg-emerald-500 text-white rounded-lg hover:bg-emerald-600 transition-colors disabled:opacity-50 disabled:cursor-not-allowed flex items-center gap-2" + className="px-4 py-2.5 bg-amber-500 text-white rounded-lg hover:bg-amber-600 transition-colors disabled:opacity-50 disabled:cursor-not-allowed flex items-center gap-2" > {submitting && } {isEdit ? '수정' : '추가'}