File tree Expand file tree Collapse file tree 4 files changed +27
-14
lines changed Expand file tree Collapse file tree 4 files changed +27
-14
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ const App = () => {
6
6
return (
7
7
< div className = 'repos' >
8
8
< GithubRepoDisplay
9
- numOfrepos = { 3 }
9
+ numOfrepos = { 5 }
10
10
userName = 'msmfa'
11
11
showStars = { true }
12
12
showLanguage = { true }
Original file line number Diff line number Diff line change @@ -36,7 +36,9 @@ export function DisplaySortedRepoData({
36
36
</ li >
37
37
< div id = 'options' className = { styles . options } >
38
38
{ showLanguage ? (
39
- < li className = 'language' > { repo . language } </ li >
39
+ < li id = 'language' className = { styles . languages } >
40
+ { repo . language }
41
+ </ li >
40
42
) : null }
41
43
{ showStars ? (
42
44
< li >
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ export const GithubRepoDisplay = ({
9
9
showLanguage
10
10
} ) => {
11
11
return (
12
- < div className = { styles . test } >
12
+ < div className = { styles . container } >
13
13
{ " " }
14
14
< GetRepoData
15
15
showStars = { showStars }
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 ;
3
+ .repoContainer ul {
4
+ list-style-type : none ;
5
5
}
6
6
7
- .test {
8
- font-size : 1em ;
9
- list-style-type : none;
10
- margin : 2em ;
11
- padding : 0.5em ;
7
+ .title {
8
+ color : # 0366d6 ;
9
+ font-size : 1.2em ;
10
+ font-weight : 600 ;
11
+ text-decoration : none;
12
+ }
13
+ .title : hover {
14
+ text-decoration : underline;
12
15
}
13
16
14
- .repoContainer ul {
15
- list-style-type : none;
17
+ .description {
18
+ color : # 3e4349 ;
19
+ font-size : 0.9em ;
20
+ margin : 0.6em 0 ;
21
+ }
22
+ .languages {
23
+ font-size : 1em ;
16
24
}
17
25
18
26
.star {
19
- height : 0.75 em ;
27
+ height : 0.7 em ;
20
28
padding-right : 0.2em ;
21
29
}
22
30
23
31
.options {
32
+ color : # 586069 ;
24
33
display : flex;
34
+ font-size : 0.8em ;
35
+ margin : 0.6em 0 ;
25
36
}
26
37
.options > li : first-child {
27
38
padding-right : 1em ;
28
39
}
29
40
30
41
.textUpdated {
31
- color : rgb (88 , 88 , 88 );
42
+ color : rgb (121 , 121 , 121 );
32
43
font-size : 0.8em ;
33
44
}
You can’t perform that action at this time.
0 commit comments