File tree 2 files changed +20
-1
lines changed
2 files changed +20
-1
lines changed Original file line number Diff line number Diff line change 74
74
padding : 20px ;
75
75
background-color : # 1a1c27 ;
76
76
}
77
+
78
+ .problem-statement-link {
79
+ text-decoration : none !important ;
80
+ color : # b3b3b3 ;
81
+ }
82
+
83
+ .problem-statement-link : hover {
84
+ color : # 646464 ;
85
+ }
86
+
87
+ .problem-statement-link : active {
88
+ text-decoration : none;
89
+ color : # b3b3b3 ;
90
+ }
91
+
77
92
.problem-statement h4 a {
78
93
text-decoration : none;
79
94
color : # b3b3b3 ;
Original file line number Diff line number Diff line change @@ -154,7 +154,11 @@ const Problem = ({ problem, updateProblem }) => {
154
154
< div className = "problem-modal" >
155
155
< Modal isOpen = { isOpen } toggle = { toggleModal } >
156
156
< ModalHeader toggle = { toggleModal } >
157
- { data [ problem ] . number + ". " + data [ problem ] . name }
157
+ < a className = "problem-statement-link" href = { data [ problem ] . link } target = "_blank" >
158
+ { data [ problem ] . number +
159
+ ". " +
160
+ data [ problem ] . name }
161
+ </ a >
158
162
</ ModalHeader >
159
163
< ModalBody >
160
164
< div className = "problem-statement" >
You can’t perform that action at this time.
0 commit comments