Skip to content

Commit

Permalink
πŸ’„ design: νšŒμ›κ°€μž… ui 제거, overlay 투λͺ…도 높이기
Browse files Browse the repository at this point in the history
  • Loading branch information
dongree committed Nov 7, 2024
1 parent 90e876f commit 3c120a0
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
11 changes: 8 additions & 3 deletions FE/src/components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,12 @@ export default function Header() {
</div>
<div className='flex items-center gap-4'>
{isLogin ? (
<button onClick={resetToken}>λ‘œκ·Έμ•„μ›ƒ</button>
<button
className='px-4 py-2 text-sm text-juga-grayscale-500'
onClick={resetToken}
>
λ‘œκ·Έμ•„μ›ƒ
</button>
) : (
<>
<button
Expand All @@ -38,9 +43,9 @@ export default function Header() {
>
둜그인
</button>
<button className='px-4 py-2 text-sm text-white rounded-lg bg-juga-grayscale-black'>
{/* <button className='px-4 py-2 text-sm text-white rounded-lg bg-juga-grayscale-black'>
νšŒμ›κ°€μž…
</button>
</button> */}
</>
)}
</div>
Expand Down
2 changes: 1 addition & 1 deletion FE/src/components/Login/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,6 @@ export default function Login() {

function Overay({ onClick }: { onClick: () => void }) {
return (
<div className='fixed inset-0 bg-black opacity-5' onClick={onClick}></div>
<div className='fixed inset-0 bg-black opacity-30' onClick={onClick}></div>
);
}

0 comments on commit 3c120a0

Please sign in to comment.