Skip to content

Commit

Permalink
fix types for Eyebrow and ProjectCard
Browse files Browse the repository at this point in the history
  • Loading branch information
winkerVSbecks committed Aug 22, 2023
1 parent 8d3d55d commit 72bd494
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/Eyebrow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const EyebrowContainer = styled.div<{
display: none;
align-items: center;
padding: ${spacing.padding.small}px ${spacing.padding.medium}px;
background-color: ${(props) => (props.inverse ? 'rgba(0, 0, 0, 0.3)' : color.blueLight)};
background-color: ${(props) => (props.inverse ? 'rgba(0, 0, 0, 0.3)' : color.bluelight)};
box-shadow: ${(props) => (props.inverse ? 'rgba(255, 255, 255, 0.1)' : color.tr10)} 0 -1px 0px 0px
inset;
Expand Down
2 changes: 1 addition & 1 deletion src/components/ProjectCard/ProjectCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ interface ProjectCardProps
const Logotype = styled.span<Pick<ProjectCardProps, 'size'>>`
font-size: ${(props) =>
props.size === 'jumbo' ? styles.typography.size.l2 : styles.typography.size.m2}px;
font-weight: ${styles.typography.weight.black};
font-weight: 900;
`;

const Thumb = styled.div<
Expand Down

0 comments on commit 72bd494

Please sign in to comment.