[TheaderCustom]

- theme 상품 상세에서 theme명 노출부분 변경 처리.
This commit is contained in:
junghoon86.park
2025-12-16 12:20:23 +09:00
parent 3dc4699479
commit bbb9e64120
2 changed files with 4 additions and 3 deletions

View File

@@ -93,9 +93,6 @@ export default function THeaderCustom({
role="button" role="button"
/> />
)} )}
{type === "theme" && themeTitle && (
<span className={css.themeTitle} dangerouslySetInnerHTML={{ __html: themeTitle }} />
)}
{kind ? ( {kind ? (
"" ""
) : ( ) : (
@@ -107,6 +104,9 @@ export default function THeaderCustom({
}} }}
/> />
)} )}
{type === "theme" && themeTitle && (
<span className={css.themeTitle} dangerouslySetInnerHTML={{ __html: `[${themeTitle}]` }} />
)}
<Marquee <Marquee
marqueeOn="render" marqueeOn="render"
className={css.title} className={css.title}

View File

@@ -61,4 +61,5 @@
color: #eaeaea; color: #eaeaea;
width: max-content; width: max-content;
margin-right: 20px; margin-right: 20px;
margin-left: 10px;
} }