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
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const MentorFindSection = () => {
</div>

{/* 멘토 리스트 */}
<div ref={listRef} className="space-y-4">
<div ref={listRef} className="space-y-4 pb-28">
{mentorList.length === 0 ? (
<EmptySdwBCards message="멘토가 없습니다. 필터를 변경해보세요." />
) : (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ const ChatContent = ({ chatId }: ChatContentProps) => {
{/* 날짜 구분선 */}
{showDateSeparator && (
<div className="my-4 mb-6 flex w-full justify-center">
<span className="rounded-full bg-gray-100 px-3 py-1 text-gray-600 typo-regular-2">
<span className="rounded-full bg-k-50 px-3 py-1 text-k-600 typo-regular-2">
{formatDateSeparator(message.createdAt)}
</span>
</div>
Expand Down
Loading