Skip to content

Commit

Permalink
fix(template): font speaker name snowcamp (#1268)
Browse files Browse the repository at this point in the history
  • Loading branch information
CruuzAzul authored Jan 13, 2025
1 parent 8ec9c1f commit f3ab275
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
2 changes: 2 additions & 0 deletions remotion/compositions/showcases/snowcamp/Details.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,12 @@ export const Details: React.FC<{
style={{
fontFamily: 'Noto Sans,sans-serif',
fontSize: '32px',
textShadow: '0 0 10px black',
}}
iconStyle={{
opacity,
bottom: drop,
filter: 'drop-shadow(0 0 5px black)',
}}
/>
);
Expand Down
10 changes: 6 additions & 4 deletions remotion/compositions/showcases/snowcamp/Speakers.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ export const Speakers: React.FC<{speakers: Speaker[]}> = ({speakers}) => {
<AvatarWithCaption
avatarPictureUrl={speaker.picture}
avatarStyle={{
width: 250,
height: 250,
width: 220,
height: 220,
border: 'none',
boxShadow: `0 0 0 10px white, 0 0 0 20px ${shadowColor}`,
top: pictureDrop,
Expand All @@ -70,12 +70,14 @@ export const Speakers: React.FC<{speakers: Speaker[]}> = ({speakers}) => {
style={{
position: 'relative',
bottom: '-20%',
width: 250,
width: 350,
height: 100,
fontSize: 30,
fontSize: 35,
fontWeight: 700,
opacity: nameOpacity,
filter: `blur(${nameUnblur}px)`,
fontFamily: 'Noto Sans,sans-serif',
textShadow: '0 0 10px black',
}}
>
{speaker.name}
Expand Down
2 changes: 1 addition & 1 deletion remotion/compositions/showcases/snowcamp/TalkTitle.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export const TalkTitle: React.FC<{
textAlign: 'center',
opacity: titleOpacity,
filter: `blur(${titleDeblur}px)`,
textShadow: '`1px 1px 3px white`',
textShadow: '0 0 10px black',
...style,
}}
>
Expand Down

0 comments on commit f3ab275

Please sign in to comment.