Skip to content

Commit 170bb98

Browse files
authored
Merge pull request #4949 from codeharborhub/dev-6
added Contributions compo
2 parents 8f9956d + 48379a5 commit 170bb98

File tree

6 files changed

+403
-3
lines changed

6 files changed

+403
-3
lines changed

community/team.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ sidebar_position: 4
88
import {
99
ActiveTeamRow
1010
} from '@site/src/components/TeamProfileCards';
11+
import ContributorList from '@site/src/components/ContributorList';
1112

1213
## Owner and Founder {#owner}
1314

@@ -21,4 +22,4 @@ If you are interested in joining the team, or would like to contribute to the Op
2122

2223
## Contributors {#contributors}
2324

24-
![Contributors](https://opencollective.com/codeharborhub/contributors.svg?button=false&avatarHeight=50&width=1000)
25+
<ContributorList contributorsPerPage={150} contributorsIgnore={["restyled-commits", "dependabot", "renovate", "deepsource-autofix", "ImgBotApp"]} />

package-lock.json

Lines changed: 168 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@
4040
"@fortawesome/react-fontawesome": "^0.2.2",
4141
"@giscus/react": "^3.0.0",
4242
"@mdx-js/react": "^3.0.0",
43+
"@octokit/rest": "^22.0.1",
4344
"@radix-ui/react-accordion": "^1.2.12",
4445
"@radix-ui/react-alert-dialog": "^1.1.15",
4546
"@radix-ui/react-aspect-ratio": "^1.1.8",
Lines changed: 106 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,106 @@
1+
.grid {
2+
display: grid;
3+
grid-template-rows: repeat(2, 1fr);
4+
overflow: hidden;
5+
place-items: center;
6+
}
7+
8+
.grid-item {
9+
display: flex;
10+
justify-content: center;
11+
align-items: center;
12+
flex-wrap: nowrap;
13+
width: 100%;
14+
overflow: hidden;
15+
}
16+
17+
.circle {
18+
display: flex;
19+
justify-content: center;
20+
align-items: center;
21+
width: 35px;
22+
height: 35px;
23+
border-radius: 50%;
24+
aspect-ratio: 1 / 1;
25+
object-fit: cover;
26+
}
27+
28+
.circle img {
29+
width: 100%;
30+
height: 100%;
31+
object-fit: cover;
32+
border: 1px solid #ff8800;
33+
}
34+
35+
.md-text {
36+
font-size: large;
37+
}
38+
39+
.fade-horizontal {
40+
position: relative;
41+
color: black;
42+
43+
-webkit-mask-image: linear-gradient(
44+
to right,
45+
transparent,
46+
black 20%,
47+
black 80%,
48+
transparent
49+
);
50+
mask-image: linear-gradient(
51+
to right,
52+
transparent,
53+
black 20%,
54+
black 80%,
55+
transparent
56+
);
57+
58+
-webkit-mask-repeat: no-repeat;
59+
mask-repeat: no-repeat;
60+
}
61+
62+
.father-flex-div {
63+
display: flex;
64+
flex-direction: column;
65+
justify-content: center;
66+
flex-wrap: nowrap;
67+
align-items: center;
68+
width: 100%;
69+
/* max-width: 100vw; */
70+
}
71+
72+
.intro {
73+
line-height: 1.6;
74+
font-weight: 500;
75+
margin: 1.5rem 1rem;
76+
word-wrap: break-word;
77+
text-align: center;
78+
}
79+
80+
@media (max-width: 700px) {
81+
.circle {
82+
width: 14px;
83+
height: 14px;
84+
}
85+
}
86+
87+
@media (min-width: 701px) and (max-width: 1024px) {
88+
.circle {
89+
width: 17px;
90+
height: 17px;
91+
}
92+
}
93+
94+
@media (min-width: 1025px) and (max-width: 1440px) {
95+
.circle {
96+
width: 28px;
97+
height: 28px;
98+
}
99+
}
100+
101+
@media (min-width: 1441px) {
102+
.circle {
103+
width: 31px;
104+
height: 31px;
105+
}
106+
}

0 commit comments

Comments
 (0)