Skip to content

Commit

Permalink
Fix: Color
Browse files Browse the repository at this point in the history
  • Loading branch information
gomminjae committed Nov 22, 2024
1 parent d150ea5 commit 23b9d7e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Component/Notice/FAQList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const goToDetail = (faqId) => {
<div class="p-6 bg-gray-100 min-h-screen">
<!-- 제목 및 검색 -->
<div class="flex justify-between items-center mb-6">
<h2 class="text-xl font-bold text-gray-800">공지사항</h2>
<h2 class="text-xl font-bold text-gray-800">자주 묻는 질문</h2>
</div>

<!-- 공지사항 리스트 -->
Expand Down
2 changes: 1 addition & 1 deletion src/Component/Notice/TabBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
@click="$emit('changeTab', tab.id)"
:class="[
'px-6 py-2 font-medium',
activeTab === tab.id ? 'border-b-2 border-black text-black' : 'text-gray-500',
activeTab === tab.id ? 'border-b-4 border-[#5995ED] text-black' : 'text-gray-500',
]"
class="transition"
>
Expand Down

0 comments on commit 23b9d7e

Please sign in to comment.