Skip to content

Commit

Permalink
add support for future popup.html css styling
Browse files Browse the repository at this point in the history
  • Loading branch information
michalbcz committed Nov 27, 2016
1 parent bd69bcb commit 6627a21
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
"web_accessible_resources": [
"panel.html",
"css/panel.css",
"css/popup.css",
"css/font-awesome.css",
"fonts/*"
],
Expand Down
2 changes: 1 addition & 1 deletion src/popup.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<html>
<head>
<link href="css/popup.css" rel="stylesheet" type="text/css">
<link href="/css/popup.css" rel="stylesheet" type="text/css">
</head>
<body>
<div id="app"></div>
Expand Down
3 changes: 2 additions & 1 deletion webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ module.exports = {
{ from: path.join(__dirname, 'node_modules/font-awesome/css/font-awesome.css'), to: 'css'},
{ from: path.join(__dirname, 'node_modules/font-awesome/fonts'), to: 'fonts'},
]),
new ExtractTextPlugin('./css/panel.css')
new ExtractTextPlugin('./css/panel.css'),
new ExtractTextPlugin('./css/popup.css')
]
};

0 comments on commit 6627a21

Please sign in to comment.