Skip to content

Commit 34f572c

Browse files
author
Welton Felix
committed
Corrige erros de linting
1 parent 1e50601 commit 34f572c

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/components/HomeSections/HeroHeader/styles.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ export const Container = styled.div`
1111
1212
display: flex;
1313
14-
background: ${(props) =>
14+
background:
15+
${(props) =>
1516
props.theme === darkTheme
1617
? 'linear-gradient(90deg, rgba(0, 0, 0, 0.69) 0%, rgba(0, 0, 0, 0.46) 100%)'
1718
: 'linear-gradient(90deg, rgba(255, 255, 255, 0.62) 0%, rgba(255, 255, 255, 0.25) 100%)'},

src/components/HomeSections/Section/styles.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ export const Container = styled.div<ContainerProps>`
88
width: 100vw !important;
99
max-width: 100%;
1010
11-
background: ${(props) => (props.$accent ? props.theme.sectionAccent : 'none')};
11+
background: ${(props) =>
12+
props.$accent ? props.theme.sectionAccent : 'none'};
1213
`;
1314

1415
export const Content = styled.div`

0 commit comments

Comments
 (0)