Skip to content

Commit b11c540

Browse files
authored
Change layout from flex to grid for volunteer links when viewing by team (#125)
* Change layout from flex to grid for volunteer links when viewing by team * Fix spelling of 'Sànchez' to 'Sánchez'
1 parent f3e857e commit b11c540

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/data/volunteers.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ const volunteers = [
165165
teams: ["communications"]
166166
},
167167
{
168-
name: "Wendy N. Sànchez",
168+
name: "Wendy N. Sánchez",
169169
image: "/images/volunteers/wendy_n_sanchez.jpg",
170170
links: {
171171
linkedin: "https://www.linkedin.com/in/wendy-n-sanchez",

src/pages/[lang]/volunteers.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ const volunteerGroups = buildVolunteerGroupMap(volunteers);
256256
<p class="text-black dark:text-white text-md font-bold">
257257
{volunteer.name}
258258
</p>
259-
<div class="flex pt-2">
259+
<div class="grid grid-cols-4 pt-2">
260260
{volunteer.links.mastodon && (
261261
<SocialsComponent
262262
speakersSocialUrl={

0 commit comments

Comments
 (0)