File tree Expand file tree Collapse file tree 2 files changed +10
-8
lines changed
apps/frontend/src/app/question/[id] Expand file tree Collapse file tree 2 files changed +10
-8
lines changed Original file line number Diff line number Diff line change @@ -300,21 +300,23 @@ export default function QuestionPage() {
300
300
>
301
301
< div className = "submission-header-detail" >
302
302
< div style = { { fontWeight : "bold" } } >
303
- Submitted at:
303
+ Submitted at:
304
+ </ div >
305
+ < div style = { { paddingLeft : "5px" } } >
306
+ { submission ?. submittedAt || "-" }
304
307
</ div >
305
- < div > { submission ?. submittedAt || "-" } </ div >
306
308
</ div >
307
309
< div className = "submission-header-detail" >
308
- < div style = { { fontWeight : "bold" } } >
309
- Language:
310
+ < div style = { { fontWeight : "bold" } } > Language:</ div >
311
+ < div style = { { paddingLeft : "5px" } } >
312
+ { submission ?. language || "-" }
310
313
</ div >
311
- < div > { submission ?. language || "-" } </ div >
312
314
</ div >
313
315
< div className = "submission-header-detail" >
314
316
< div style = { { fontWeight : "bold" } } >
315
- Matched with:
317
+ Matched with:
316
318
</ div >
317
- < div >
319
+ < div style = { { paddingLeft : "5px" } } >
318
320
{ submission ?. matchedUser
319
321
? // Check to ensure that matched user is correct, otherwise swap with otherUser
320
322
username == submission . matchedUser
Original file line number Diff line number Diff line change 142
142
font-weight : normal ;
143
143
display : flex ;
144
144
flex-direction : row ;
145
- padding : 0px 10px 0px 10 px ;
145
+ padding : 0px 10px 0px 0 px ;
146
146
}
You can’t perform that action at this time.
0 commit comments