Skip to content

Commit 67d41c6

Browse files
authored
fix: apply theme color to problem panel badge (#665)
Signed-off-by: Jay Kadlag <jaykadlag14@gmail.com>
1 parent 76717a7 commit 67d41c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/ProblemPanel.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ const ProblemPanel: React.FC = () => {
110110
<div className="problem-panel-problem-details">
111111
<div className="problem-panel-problem-meta">
112112
<div className="problem-panel-problem-tags">
113-
<span className="problem-panel-problem-type-badge">
113+
<span className="problem-panel-problem-type-badge" style={{ color: textColor }}>
114114
{problem.type.toUpperCase()}
115115
</span>
116116
{problem.source && (

0 commit comments

Comments
 (0)