diff options
author | Dan Finlay <dan@danfinlay.com> | 2017-07-21 03:50:42 +0800 |
---|---|---|
committer | Dan Finlay <dan@danfinlay.com> | 2017-07-21 03:52:01 +0800 |
commit | 31e7d8a24bd86d0fe8cd3822431bcc4f1a09c780 (patch) | |
tree | d435fe09c3b9f5258fde20450086d1208d46c1cb /ui/css.js | |
parent | a41e5788cf4a8e680fdbc4d16690a8f5cc8af265 (diff) | |
download | tangerine-wallet-browser-31e7d8a24bd86d0fe8cd3822431bcc4f1a09c780.tar tangerine-wallet-browser-31e7d8a24bd86d0fe8cd3822431bcc4f1a09c780.tar.gz tangerine-wallet-browser-31e7d8a24bd86d0fe8cd3822431bcc4f1a09c780.tar.bz2 tangerine-wallet-browser-31e7d8a24bd86d0fe8cd3822431bcc4f1a09c780.tar.lz tangerine-wallet-browser-31e7d8a24bd86d0fe8cd3822431bcc4f1a09c780.tar.xz tangerine-wallet-browser-31e7d8a24bd86d0fe8cd3822431bcc4f1a09c780.tar.zst tangerine-wallet-browser-31e7d8a24bd86d0fe8cd3822431bcc4f1a09c780.zip |
Fix css links
Diffstat (limited to 'ui/css.js')
-rw-r--r-- | ui/css.js | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -9,8 +9,8 @@ var cssFiles = { 'lib.css': fs.readFileSync(path.join(__dirname, '/app/css/lib.css'), 'utf8'), 'index.css': fs.readFileSync(path.join(__dirname, '/app/css/index.css'), 'utf8'), 'transitions.css': fs.readFileSync(path.join(__dirname, '/app/css/transitions.css'), 'utf8'), - 'react-tooltip-component.css': fs.readFileSync(path.join(__dirname, '..', '..', 'node_modules', 'react-tooltip-component', 'dist', 'react-tooltip-component.css'), 'utf8'), - 'react-css': fs.readFileSync(path.join(__dirname, '..', '..', 'node_modules', 'react-select', 'dist', 'react-select.css'), 'utf8'), + 'react-tooltip-component.css': fs.readFileSync(path.join(__dirname, '..', 'node_modules', 'react-tooltip-component', 'dist', 'react-tooltip-component.css'), 'utf8'), + 'react-css': fs.readFileSync(path.join(__dirname, '..', 'node_modules', 'react-select', 'dist', 'react-select.css'), 'utf8'), } function bundleCss () { |