We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f171d44 commit b200b78Copy full SHA for b200b78
1 file changed
src/layouts/PeopleLayout.astro
@@ -97,10 +97,10 @@ setJumpToState(null);
97
}
98
99
<h2 class="mb-lg">{contributorEntries.label}</h2>
100
- <ul class="content-grid !gap-xs">
+ <ul class="grid grid-cols-2 lg:grid-cols-4 gap-x-[40px]">
101
{
102
lodash.shuffle(contributorEntries.members).map((person) => (
103
- <li class="col-span-3">
+ <li class="col-span-1">
104
<a
105
href={person.data.url}
106
aria-label={`Link to ${person.data.name}'s personal website'`}
0 commit comments