Skip to content

Commit

Permalink
Speaker tweaks and href
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshuaKGoldberg committed May 28, 2024
1 parent 80d9a55 commit dfd3fb0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/components/FAQs.astro
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,9 @@ See also [Sponsors](#sponsors) for options to get ticket discounts and promote y
[
"How do I get there? (airport, parking, and train information)",
(await markdown(
`[Boston Logan International Airport (BOS)](https://massport.com/logan-airport) is your best bet to get into Boston from out-of-town.
`<a href="https://massport.com/logan-airport" target="_blank" rel="noreferrer">Boston Logan International Airport (BOS)</a> is your best bet to get into Boston from out-of-town.
Once you're in Boston, see [neaq.org/visit/directions-and-parking](https://www.neaq.org/visit/directions-and-parking) for directions to the New England Aquarium. The Simons Theater is in the same address.`,
Once you're in Boston, see <a href="https://www.neaq.org/visit/directions-and-parking" target="_blank" rel="noreferrer">neaq.org/visit/directions-and-parking</a> for directions to the New England Aquarium. The Simons Theater is in the same address.`,
)) as string,
],
[
Expand Down
2 changes: 2 additions & 0 deletions src/components/Speaker.astro
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@ const { links, name, photo, position, size } = Astro.props;
.speaker {
align-items: center;
display: flex;
flex-basis: 0;
flex-direction: column;
flex-grow: 2;
font-family: var(--fontFamilyBody);
gap: 0.25rem;
max-width: 40vw;
Expand Down
2 changes: 0 additions & 2 deletions src/components/Speakers.astro
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,6 @@ const speakers: Omit<SpeakerProps, "size">[] = [

.speakers {
display: flex;
flex-basis: 0;
flex-grow: 2;
flex-wrap: wrap;
font-family: var(--fontFamilyBody);
gap: 2rem;
Expand Down

0 comments on commit dfd3fb0

Please sign in to comment.