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 @@ -21,7 +21,7 @@
display: flex;
flex-direction: column;
min-width: 0;
padding: 120px 67px 80px;
padding: 90px 91px 110px 91px;
box-sizing: border-box;
}

Expand Down Expand Up @@ -82,7 +82,7 @@
gap: 6px;
}

/* 모바일/태블릿: top 대신 left:50px */
/* 모바일/태블릿: top 대신 left:50px */
@media (max-width: 1023px) {
.teamMenu {
top: auto;
Expand All @@ -91,7 +91,7 @@
}
}

/* 모바일: width 100px */
/* 모바일: width 100px */
@media (max-width: 743px) {
.teamMenu {
width: 100px;
Expand Down Expand Up @@ -188,7 +188,7 @@
color: #0f172a;
}

/* 스크롤 + margin-top 40 */
/* 스크롤 + margin-top 40 */
.leftScroll {
max-height: 768px;
overflow: auto;
Expand All @@ -197,7 +197,7 @@
margin-top: 40px;
}

/* 월별 묶음 간격 55px */
/* 월별 묶음 간격 55px */
.monthBlock {
display: flex;
flex-direction: column;
Expand Down Expand Up @@ -348,7 +348,7 @@
}
}

/* 모바일/태블릿 칩 라인 (PC 숨김) */
/* 모바일/태블릿 칩 라인 (PC 숨김) */
.chipRow {
display: none;
margin-top: 16px;
Expand All @@ -369,9 +369,9 @@
/* Chip 크기: 모바일 86px */
@media (max-width: 743px) {
:global(.Chip-module__j4Ti-q__chip.Chip-module__j4Ti-q__small) {
width: 87px !important;
width: 86px !important;
height: 33px !important;
padding: 0 !important;
padding: 0 12px !important;
border: 1px solid #e2e8f0 !important;
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import Image from 'next/image';
import { useParams, useRouter } from 'next/navigation';
import { useQueryClient } from '@tanstack/react-query';

import styles from './MyHistory.module.css';
import styles from './page.module.css';

import TeamHeader from '@/components/team-header';
import ArrowButton from '@/components/Button/domain/ArrowButton/ArrowButton';
Expand All @@ -27,7 +27,7 @@ import {
patchTaskDone,
deleteTask,
deleteTeam,
} from '@/app/[teamid]/_domain/components/MyHistory/queries';
} from './queries';

type Writer = { id: number; nickname: string; image: string | null };
type UiComment = {
Expand Down
Loading