Skip to content

Commit

Permalink
Corrige erros de linting
Browse files Browse the repository at this point in the history
  • Loading branch information
Welton Felix committed Aug 6, 2023
1 parent 1e50601 commit 34f572c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/components/HomeSections/HeroHeader/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ export const Container = styled.div`
display: flex;
background: ${(props) =>
background:
${(props) =>
props.theme === darkTheme
? 'linear-gradient(90deg, rgba(0, 0, 0, 0.69) 0%, rgba(0, 0, 0, 0.46) 100%)'
: 'linear-gradient(90deg, rgba(255, 255, 255, 0.62) 0%, rgba(255, 255, 255, 0.25) 100%)'},
Expand Down
3 changes: 2 additions & 1 deletion src/components/HomeSections/Section/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ export const Container = styled.div<ContainerProps>`
width: 100vw !important;
max-width: 100%;
background: ${(props) => (props.$accent ? props.theme.sectionAccent : 'none')};
background: ${(props) =>
props.$accent ? props.theme.sectionAccent : 'none'};
`;

export const Content = styled.div`
Expand Down

0 comments on commit 34f572c

Please sign in to comment.