Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions apps/homepage/global.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
declare module '*.css';
declare module '*.scss';
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ export const PeriodField = ({
formatWeekDay={(nameOfDay) => nameOfDay.toLowerCase().slice(0, 3)}
renderCustomHeader={(props) => <CustomHeader {...props} />}
disabledKeyboardNavigation
portalId='datepicker-portal'
/>
</div>
<div
Expand All @@ -77,6 +78,7 @@ export const PeriodField = ({
formatWeekDay={(nameOfDay) => nameOfDay.toLowerCase().slice(0, 3)}
renderCustomHeader={(props) => <CustomHeader {...props} />}
disabledKeyboardNavigation
portalId='datepicker-portal'
/>
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -150,20 +150,20 @@ export const SessionCard = ({
</h4>
</div>
<div className='h-px w-full shrink-0 bg-neutral-200' />
<div className='flex flex-row gap-2.75 lg:gap-10'>
<div className='flex flex-1 flex-col gap-1.75 lg:gap-1'>
<div className='flex w-full items-start gap-2.75 self-stretch lg:gap-10'>
<div className='flex min-w-0 flex-1 flex-col items-start gap-1.75'>
<span className='lg:text-h5 text-body-l-b text-neutral-400'>
세션 설명
</span>
<p className='lg:text-h5 text-body-m text-neutral-600'>
<p className='lg:text-h5 text-body-m wrap-break-word whitespace-normal text-neutral-600'>
{session.description || '설명이 없습니다.'}
</p>
</div>
<div className='flex flex-col gap-1 lg:w-94.25 lg:shrink-0'>
<div className='flex min-w-0 flex-1 flex-col items-start gap-1.75'>
<span className='lg:text-h5 text-body-l-b text-neutral-400'>
세션 장소
</span>
<p className='lg:text-h5 text-body-m text-neutral-600'>
<p className='lg:text-h5 text-body-m wrap-break-word whitespace-normal text-neutral-600'>
{session.sessionType === 'ONLINE' && !session.placeName ? (
'온라인 세션'
) : (
Expand Down
1 change: 1 addition & 0 deletions apps/homepage/src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ export default function RootLayout({
) : null}
<BeUsableRum />
<main>{children}</main>
<div id='datepicker-portal' className='z-datepicker relative' />
</body>
</AuthProvider>
</Providers>
Expand Down
2 changes: 2 additions & 0 deletions apps/recruit/global.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
declare module '*.css';
declare module '*.scss';
8 changes: 4 additions & 4 deletions packages/ui/src/components/form/FormLink.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -101,14 +101,14 @@ export const FormLink = forwardRef<HTMLInputElement, FormLinkProps>(
ref={ref}
type='text'
placeholder={
placeholder ??
(isMobile
? '링크를 입력해주세요'
placeholder ??
(isMobile
? '링크를 입력해주세요'
: '쉼표(,)로 여러 링크를 구분할 수 있습니다.')
}
value={rawLinks[0] || ''}
onChange={handleChange}
className='flex-1 outline-none'
className='min-w-0 flex-1 outline-none'
{...props}
/>
</div>
Expand Down