File tree Expand file tree Collapse file tree 3 files changed +2
-3
lines changed
pages/communities/[slug]/challenges/[challenge_id] Expand file tree Collapse file tree 3 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ type HintProps = {
6
6
} ;
7
7
8
8
function Hint ( { children, className } : HintProps ) : ReactElement {
9
- return < div className = { `bg-yellow -50 text-yellow-900 py-5 px-8 border border-solid border-yellow-100 text-base hint-container ${ className } ` } > { children } </ div > ;
9
+ return < div className = { `bg-blue -50 text-blue-500 p-3 border border-blue-200 rounded text-base hint-container ${ className } ` } > { children } </ div > ;
10
10
}
11
11
12
12
export default Hint ;
Original file line number Diff line number Diff line change @@ -144,7 +144,6 @@ export default function ChallengePage() {
144
144
< div className = "grid mt-8 space-y-8" >
145
145
< Hint >
146
146
< p
147
- className = "text-lg py-4"
148
147
dangerouslySetInnerHTML = { {
149
148
__html : t (
150
149
challenge ?. multipleSubmissions ? "communities.challenge.submission.multiple-submissions" : "communities.challenge.submission.no-multiple-submissions"
Original file line number Diff line number Diff line change @@ -349,7 +349,7 @@ div {
349
349
}
350
350
351
351
.hint-container a {
352
- font-weight : 400 ;
352
+ font-weight : 500 ;
353
353
text-decoration : underline;
354
354
}
355
355
You can’t perform that action at this time.
0 commit comments