Skip to content

Commit

Permalink
chore(docs): fix team member card layout on mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonkuhrt committed Sep 17, 2024
1 parent 94584a0 commit 1851a09
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion website/content/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,20 @@ const members = [
}

.VPTeamMembers.small .container {
grid-template-columns: repeat(4, 1fr)!important;
grid-template-columns: repeat(2, 1fr)!important;
}

@media (min-width: 767px) and (max-width: 1023px) {
.VPTeamMembers.small .container {
grid-template-columns: repeat(2, 1fr) !important;
}
}

@media (max-width: 767px) {
.VPTeamMembers.small .container {
grid-template-columns: 1fr !important;
}
}
</style>

<section class="CustomSections">
Expand Down

0 comments on commit 1851a09

Please sign in to comment.