Skip to content

Commit

Permalink
fix: remove extraneous closing bracket from scrollbar-color (#191)
Browse files Browse the repository at this point in the history
  • Loading branch information
wKovacs64 committed Dec 2, 2020
1 parent 29ec873 commit dc69888
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/password-through-lense.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const Lense = styled.div`
body.light-mode & {
background-color: ${light.colors.lenseBackground};
border-color: ${light.colors.lenseBorder};
scrollbar-color: ${`${light.colors.lenseScrollThumb} ${light.colors.lenseScrollTrack}}`};
scrollbar-color: ${`${light.colors.lenseScrollThumb} ${light.colors.lenseScrollTrack}`};
&::-webkit-scrollbar-thumb {
background-color: ${light.colors.lenseScrollThumb};
}
Expand All @@ -40,7 +40,7 @@ const Lense = styled.div`
body.dark-mode & {
background-color: ${dark.colors.lenseBackground};
border-color: ${dark.colors.lenseBorder};
scrollbar-color: ${`${dark.colors.lenseScrollThumb} ${dark.colors.lenseScrollTrack}}`};
scrollbar-color: ${`${dark.colors.lenseScrollThumb} ${dark.colors.lenseScrollTrack}`};
&::-webkit-scrollbar-thumb {
background-color: ${dark.colors.lenseScrollThumb};
}
Expand Down

0 comments on commit dc69888

Please sign in to comment.