Browse Source

Rename firefox.css to default.css

Tyler Hallada 6 years ago
parent
commit
638671bf82

firefox.css → default.css


File diff suppressed because it is too large
+ 1 - 1
dist/default.min.css.map


File diff suppressed because it is too large
+ 1 - 1
dist/default.min.js.map


File diff suppressed because it is too large
+ 1 - 1
dist/example.min.css.map


File diff suppressed because it is too large
+ 1 - 1
dist/example.min.js.map


+ 1 - 1
example/example.scss

@@ -17,7 +17,7 @@
17 17
 
18 18
 /* apply Firefox's default stylesheet so that Bootstrap has some browser-like styling to work with */
19 19
 // @import '../default.css';
20
-@import '../firefox.css';
20
+@import '../default.css';
21 21
 
22 22
 /* apply the Bootstrap reboot (normalize.css) to convert Firefox default styling to some cross-browser baseline
23 23
  * then, apply the Bootstrap component styling */

+ 1 - 1
webpack.config.js

@@ -4,7 +4,7 @@ const ExtractTextPlugin = require('extract-text-webpack-plugin');
4 4
 
5 5
 module.exports = {
6 6
   entry: {
7
-    default: path.resolve(__dirname, 'firefox.css'),
7
+    default: path.resolve(__dirname, 'default.css'),
8 8
     example: path.resolve(__dirname, 'example/example.scss')
9 9
   },
10 10
   output: {