Skip to content

Commit

Permalink
Merge pull request #655 from Asymtode712/ResponsiveFeat
Browse files Browse the repository at this point in the history
Added responsiveness to Team page
  • Loading branch information
mdazfar2 authored Jun 25, 2024
2 parents c50974f + 24be87e commit 97df4eb
Show file tree
Hide file tree
Showing 5 changed files with 536 additions and 2 deletions.
25 changes: 25 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"dependencies": {
"@splidejs/react-splide": "^0.7.12"
}
}
21 changes: 21 additions & 0 deletions website3.0/stylesheets/footer.css
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,25 @@
}
.font a{
text-decoration: underline;
}

/* Mobile-S (325px) */
@media screen and (max-width: 320px){
.footer{
margin-left: 70px;
}
}

/* Mobile-M (375px) */
@media screen and (min-width: 321px) and (max-width: 375px) {
.footer{
margin-left: 65px;
}
}

/* Mobile-L (425px) */
@media screen and (min-width: 376px) and (max-width: 425px) {
.footer{
margin-left: 35px;
}
}
3 changes: 3 additions & 0 deletions website3.0/stylesheets/header.css
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,9 @@ nav {
top: 10px;
left: 3% !important;
}
.toggle-switch{
margin-top: 18px;
}
nav {
gap: 5% !important;
}
Expand Down
Loading

0 comments on commit 97df4eb

Please sign in to comment.