Skip to content

Commit 0c5ce49

Browse files
authored
Merge pull request #541 from solid-connection/fix/mentor-ui-bottom-safe-area
fix: 멘토 UI 하단 요소 겹침과 날짜 색상 조정
2 parents b2d33f4 + 1ae8928 commit 0c5ce49

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

  • apps/web/src/app/mentor

apps/web/src/app/mentor/_ui/MentorClient/_ui/MentorFindSection/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ const MentorFindSection = () => {
4343
</div>
4444

4545
{/* 멘토 리스트 */}
46-
<div ref={listRef} className="space-y-4">
46+
<div ref={listRef} className="space-y-4 pb-28">
4747
{mentorList.length === 0 ? (
4848
<EmptySdwBCards message="멘토가 없습니다. 필터를 변경해보세요." />
4949
) : (

apps/web/src/app/mentor/chat/[chatId]/_ui/ChatContent/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ const ChatContent = ({ chatId }: ChatContentProps) => {
155155
{/* 날짜 구분선 */}
156156
{showDateSeparator && (
157157
<div className="my-4 mb-6 flex w-full justify-center">
158-
<span className="rounded-full bg-gray-100 px-3 py-1 text-gray-600 typo-regular-2">
158+
<span className="rounded-full bg-k-50 px-3 py-1 text-k-600 typo-regular-2">
159159
{formatDateSeparator(message.createdAt)}
160160
</span>
161161
</div>

0 commit comments

Comments
 (0)