Skip to content

Commit

Permalink
Update src/components/layout/LayoutRevamp.js
Browse files Browse the repository at this point in the history
Co-authored-by: Ruslan Dudin <[email protected]>
  • Loading branch information
SorinC6 and vsubhuman authored Sep 30, 2024
1 parent d52aac6 commit 19d0425
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/layout/LayoutRevamp.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const Container = styled.div`

const SBackground = styled('div')(({ isDark, isLight }) => ({

Check warning on line 12 in src/components/layout/LayoutRevamp.js

View workflow job for this annotation

GitHub Actions / flow-and-lint

'isLight' is defined but never used. Allowed unused args must match /^_/u
// eslint-disable-next-line no-nested-ternary
backgroundColor: isDark ? '#15171F' : isLight ? '#FFFFFF' : '#FFFFFF',
backgroundColor: isDark ? '#15171F' : '#FFFFFF',
'& h1, & h2, & h3, & h4, & h5, & h6, & a, & p, & span': {
color: isDark && '#E1E6F5',
},
Expand Down

0 comments on commit 19d0425

Please sign in to comment.