Skip to content

Commit

Permalink
style: #8 - tab border 다크모드 적용
Browse files Browse the repository at this point in the history
  • Loading branch information
권기범 authored and 권기범 committed Oct 31, 2023
1 parent 9a7201a commit a589276
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/common/Tab/TabItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ const TabItem = ({ active, text, dest, onClick }: TabItemProps) => {
<div
onClick={onClick}
className={cls(
active ? 'border-emerald-500' : 'border-slate-300',
`text-gray9 flex w-[100%] cursor-pointer items-center justify-center border-b py-4 text-sm font-bold transition ease-in-out`,
active ? 'border-emerald5' : 'border-slate3',
`flex w-[100%] cursor-pointer items-center justify-center border-b py-4 text-sm font-bold text-gray9 transition ease-in-out`,
)}>
{text}
</div>
Expand Down

0 comments on commit a589276

Please sign in to comment.