Skip to content

Commit

Permalink
Merge pull request #1175 from rajveeerr/main
Browse files Browse the repository at this point in the history
Fix Community Page Responsiveness and Enhance Design
  • Loading branch information
SurajPratap10 authored Oct 8, 2024
2 parents 4566b72 + 6efa725 commit 752af91
Showing 1 changed file with 18 additions and 11 deletions.
29 changes: 18 additions & 11 deletions views/team.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,14 @@
}
.team-members {
display: grid;
grid-template-columns: repeat(5, 1fr);
/* display: grid; */
display: flex;
/* grid-template-columns: repeat(5, 1fr); */
gap: 20px;
margin-top: 30px;
margin-top: 5rem;
flex-wrap: wrap;
justify-content: center;
align-items: center;
}
.team-member {
Expand Down Expand Up @@ -67,7 +71,7 @@
display: flex;
justify-content: center;
align-items: center;
padding: 35px 0;
/* padding: 35px 0; */
}
.widget-container {
Expand Down Expand Up @@ -145,15 +149,18 @@
main {
padding-top: 80px;
}
.team{
padding-top: 3rem;
}
.heading-contributors {
margin-top: 20px;
width: 100%;
position: relative;
text-align: center;
font: 900 3vw 'Orbitron', sans-serif;
background: red;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
width: 100%;
position: relative;
text-align: center;
font: 900 2.3rem 'Orbitron', sans-serif;
background: #343434;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.heading-contributors:after {
Expand Down

0 comments on commit 752af91

Please sign in to comment.