Skip to content

Commit 67ca2a3

Browse files
committed
fix : font size
1 parent 9882058 commit 67ca2a3

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/hooks/useMeisterHTML.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -123,19 +123,19 @@ export const useMeisterHTML = () => {
123123
.replaceAll("`", "")
124124
.replaceAll(
125125
"(상점 : ",
126-
`\n<span style="font-size: 24px !important; font-weight: 600 !important;">상점 `,
126+
`\n<span style="font-size: 20px !important; font-weight: 600 !important;">상점 `,
127127
)
128128
.replaceAll(
129129
"(벌점 : ",
130-
`\n<span style="font-size: 24px !important; font-weight: 600 !important;">벌점 `,
130+
`\n<span style="font-size: 20px !important; font-weight: 600 !important;">벌점 `,
131131
)
132132
.replaceAll("점)", "점</span>")
133133
.replaceAll("부여일 : ", "20")
134134
.replace(/\d{2}-/gi, "")
135135
.replace(/\d{2}-/gi, "")
136136
.replace(/\d{2}-/gi, "")
137-
.replace(/\(([^)]*[^)]*)\)/g, "$1")
138-
.replace(/·/gi, "asdfasfsf");
137+
.replace(/\(([^)]*[^)]*)\)/gi, "$1")
138+
.replace(/\([^)]*\)/gi, "");
139139
};
140140

141141
return { getBasicJobSkills, scoreParser, pointParser };

src/templates/meister/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ const PointHTMLContent = styled.div`
369369
}
370370
371371
li > div > div {
372-
font-size: 20px !important;
372+
font-size: 16px !important;
373373
font-weight: 500 !important;
374374
text-align: center !important;
375375
white-space: pre-wrap !important;
@@ -378,7 +378,7 @@ const PointHTMLContent = styled.div`
378378
}
379379
380380
li > div > div:first-child > div {
381-
font-size: 20px !important;
381+
font-size: 18px !important;
382382
font-weight: 500 !important;
383383
color: black !important;
384384
}

0 commit comments

Comments
 (0)