Skip to content

Commit 4a83cf4

Browse files
committed
feat: update branding in modals to enhance visual appeal
1 parent 9e1b4b6 commit 4a83cf4

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

apps/client/src/components/modal/CreateSessionModal.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,10 @@ function CreateSessionModal() {
4646
return (
4747
<Modal>
4848
<div className='flex h-fit flex-col items-center justify-start gap-4 self-stretch rounded p-4'>
49-
<div className='text-2xl font-bold text-indigo-600'>Ask-It</div>
49+
<div className='font-header text-2xl'>
50+
<span className='text-indigo-600'>A</span>
51+
<span className='text-black'>sk-It</span>
52+
</div>
5053
<InputField
5154
label='세션 이름'
5255
type='text'

apps/client/src/components/modal/SignInModal.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,10 @@ function SignInModal() {
3434
return (
3535
<Modal>
3636
<div className='flex flex-col items-center justify-center gap-4 p-4'>
37-
<p className='text-2xl font-bold text-indigo-600'>Ask-It</p>
37+
<div className='font-header text-2xl'>
38+
<span className='text-indigo-600'>A</span>
39+
<span className='text-black'>sk-It</span>
40+
</div>
3841
<InputField
3942
label='이메일'
4043
type='email'

apps/client/src/components/modal/SignUpModal.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,10 @@ function SignUpModal() {
5757
return (
5858
<Modal>
5959
<div className='flex flex-col items-center justify-center gap-4 p-4'>
60-
<p className='text-2xl font-bold text-indigo-600'>Ask-It</p>
60+
<div className='font-header text-2xl'>
61+
<span className='text-indigo-600'>A</span>
62+
<span className='text-black'>sk-It</span>
63+
</div>
6164
<InputField
6265
label='이메일'
6366
type='email'

0 commit comments

Comments
 (0)