Skip to content

Commit

Permalink
fix: increased speaker ad font sizes a bit more
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshuaKGoldberg committed Sep 6, 2024
1 parent 414b356 commit c712d6e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/components/SessionTag.astro
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ const isLight = whiteStrokeIcons.includes(image);
}

.tag-large {
font-size: 1.5rem;
font-size: 2.5rem;
padding: 0.5rem 0.5rem 0.35rem;
}

Expand Down
12 changes: 8 additions & 4 deletions src/pages/ad/speaker/[slug].astro
Original file line number Diff line number Diff line change
Expand Up @@ -61,15 +61,15 @@ const talks = Object.values(talksBySlug).filter((talk) =>
display: flex;
gap: 1rem;
padding: 1.5rem 2rem;
margin: -2.5rem 0 -5rem;
margin: -1rem 0 -5rem;
position: relative;
width: 85vh;
}

.speaker-ad-image-container {
position: absolute;
right: -5rem;
top: -5rem;
top: -3.5rem;
}

.speaker-ad-contents {
Expand All @@ -82,15 +82,19 @@ const talks = Object.values(talksBySlug).filter((talk) =>
height: 100%;
}

.speaker-ad-tags {
padding-top: 1rem;
}

.talk-title {
font-family: var(--fontFamilyHeading);
font-size: 3.5rem;
font-size: 4.5rem;
margin-right: 10rem;
text-decoration: none;
}

.speaker-details {
font-size: 1.5rem;
font-size: 2rem;
text-align: right;
}
</style>
Expand Down

0 comments on commit c712d6e

Please sign in to comment.