Skip to content

Commit c84b701

Browse files
authored
Fix keynoters section alignment. (#1145)
1 parent d050660 commit c84b701

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/components/keynoters/keynoters.astro

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ const placeholders = Math.max(0, 5 - keynoters.length);
8585
{
8686
keynoters
8787
.sort((a, b) => a.data.order - b.data.order)
88-
.map((keynoter, index) => (
88+
.map((keynoter, _index) => (
8989
<Keynoter
9090
name={keynoter.data.name}
9191
slug={keynoter.slug}
@@ -95,7 +95,6 @@ const placeholders = Math.max(0, 5 - keynoters.length);
9595
order={keynoter.data.order}
9696
class:list={[
9797
"w-full sm:w-[calc(50%-1rem)] md:w-[calc(30%-1rem)]",
98-
{ "md:ml-[10%]": index === 0 },
9998
]}
10099
/>
101100
))

0 commit comments

Comments
 (0)