File tree Expand file tree Collapse file tree 2 files changed +12
-6
lines changed Expand file tree Collapse file tree 2 files changed +12
-6
lines changed Original file line number Diff line number Diff line change @@ -20,19 +20,21 @@ export function DisplaySortedRepoData({
20
20
{ sortedAndReducedRepos
21
21
? sortedAndReducedRepos . map ( ( repo ) => (
22
22
< ul key = { repo . id } >
23
- < li className = 'title' > { removeDash ( repo . name ) } </ li >
24
- < li className = 'description' > { repo . description } </ li >
25
23
< li >
26
24
< a
27
- className = 'github-link'
25
+ id = 'title'
26
+ className = { styles . title }
28
27
href = { repo . html_url }
29
28
target = '_blank'
30
29
rel = 'noopener noreferrer'
31
30
>
32
- Github
31
+ { removeDash ( repo . name ) }
33
32
</ a >
34
33
</ li >
35
- < div className = { styles . options } >
34
+ < li id = 'description' className = { styles . description } >
35
+ { repo . description }
36
+ </ li >
37
+ < div id = 'options' className = { styles . options } >
36
38
{ showLanguage ? (
37
39
< li className = 'language' > { repo . language } </ li >
38
40
) : null }
@@ -43,7 +45,7 @@ export function DisplaySortedRepoData({
43
45
</ li >
44
46
) : null }
45
47
</ div >
46
- < li className = { styles . textUpdated } >
48
+ < li id = 'text-updated' className = { styles . textUpdated } >
47
49
updated{ " " }
48
50
{ convertToHours (
49
51
getRemainingSeconds ( new Date ( repo . updated_at ) , Date . now ( ) )
Original file line number Diff line number Diff line change 1
1
/* add css module styles here (optional) */
2
2
3
+ .title {
4
+ color : green;
5
+ }
6
+
3
7
.test {
4
8
font-size : 1em ;
5
9
list-style-type : none;
You can’t perform that action at this time.
0 commit comments