Skip to content

Commit

Permalink
Fix web build by changing literal to string (#3109)
Browse files Browse the repository at this point in the history
  • Loading branch information
cmcewen authored Mar 13, 2020
1 parent eba4626 commit 4f760e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/web/src/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export enum colors {
placeholderDarkMode = '#838486',
secondary = '#81868B',
dark = '#2E3338',
darkTransparent = `rgba(46, 51, 56, 0.5)`,
darkTransparent = 'rgba(46, 51, 56, 0.5)',
gold = '#FBCC5C',
goldSelect = 'rgba(251, 204, 92, 0.4)',
goldSubtle = 'rgba(251, 204, 92, 0.2)',
Expand Down

0 comments on commit 4f760e9

Please sign in to comment.