Skip to content

Commit aa6e9d8

Browse files
committed
[Style] Tag 색상 순서 변경, Card 제목 & 내용 text size 조정
1 parent 6126d03 commit aa6e9d8

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

src/components/modalDashboard/CardDetail.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ export default function CardDetail({ card, columnName }: CardDetailProps) {
3838
{/* 내용 */}
3939
<p
4040
className="
41-
text-black font-normal sm:text-[14px] text-[12px] overflow-auto pr-1
41+
text-black font-normal sm:text-[16px] text-[14px] overflow-auto pr-1
4242
w-full lg:max-w-[445px] sm:max-w-[420px] max-w-[295px]
4343
min-h-0 sm:max-h-[100px] max-h-[80px]
4444
whitespace-pre-wrap word-break break-words

src/components/modalDashboard/CardDetailModal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ export default function CardDetailPage({
115115
{/* 헤더 */}
116116
<div className="flex justify-between sm:mb-4 mb-2">
117117
{/* 카드 제목 */}
118-
<h2 className="text-black3 font-bold sm:text-[24px] text-[20px]">
118+
<h2 className="text-black3 font-bold sm:text-[20px] text-[16px]">
119119
{cardData.title}
120120
</h2>
121121
{/* 버튼 컨테이너 */}

src/components/modalInput/chips/ColorTagChip.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@ import clsx from "clsx";
22

33
const tagColorSet = [
44
{
5-
textColor: "text-[var(--sortTextGreen)]",
6-
bgColor: "bg-[var(--sortTextBgGreen)]",
5+
textColor: "text-[var(--sortTextBlue)]",
6+
bgColor: "bg-[var(--sortTextBgBlue)]",
77
},
88
{
99
textColor: "text-[var(--sortTextPink)]",
1010
bgColor: "bg-[var(--sortTextBgPink)]",
1111
},
1212
{
13-
textColor: "text-[var(--sortTextBlue)]",
14-
bgColor: "bg-[var(--sortTextBgBlue)]",
13+
textColor: "text-[var(--sortTextGreen)]",
14+
bgColor: "bg-[var(--sortTextBgGreen)]",
1515
},
1616
{
1717
textColor: "text-[var(--sortTextOrange)]",

src/components/modalInput/chips/ColumnNameTag.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@ export const ColumnNameTag = ({ label }: ColumnNameTagProps) => {
66
return (
77
<div className="gap-[6px] px-3 py-1 flex items-center bg-[#F3EDFF] rounded-full">
88
<span className="w-[6px] h-[6px] rounded-full bg-[var(--primary)]" />
9-
<span className="font-12r text-[var(--primary)]">{label}</span>
9+
<span className="text-[var(--primary)] font-normal sm:text-[14px] text-[12px]">
10+
{label}
11+
</span>
1012
</div>
1113
);
1214
};

0 commit comments

Comments
 (0)