Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorRobert Martin <rmartin@rmart.in>2018-03-08 00:53:39 +0300
committerJohann-S <johann.servoire@gmail.com>2018-03-08 11:20:00 +0300
commit817b80d54b953760a1f4e369d7d772af7db7c974 (patch)
treed2894df090e2c401e80b1b312e869cdb6a8f0033 /docs
parentfb60a4a9867eb1fc18cf310de2bbb8f21e262e6b (diff)
Update webpack.md
Minor edits for style and consistency
Diffstat (limited to 'docs')
-rw-r--r--docs/4.0/getting-started/webpack.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/4.0/getting-started/webpack.md b/docs/4.0/getting-started/webpack.md
index 70b44b6157..f1b79294db 100644
--- a/docs/4.0/getting-started/webpack.md
+++ b/docs/4.0/getting-started/webpack.md
@@ -40,7 +40,7 @@ Notice that if you chose to **import plugins individually**, you must also insta
To enjoy the full potential of Bootstrap and customize it to your needs, use the source files as a part of your project's bundling process.
-First, create your own `_custom.scss` and use it to override the [built-in custom variables]({{ site.baseurl }}/docs/{{ site.docs_version }}/getting-started/options/). Then, use your main sass file to import your custom variables, followed by Bootstrap:
+First, create your own `_custom.scss` and use it to override the [built-in custom variables]({{ site.baseurl }}/docs/{{ site.docs_version }}/getting-started/options/). Then, use your main Sass file to import your custom variables, followed by Bootstrap:
{% highlight scss %}
@import "custom";
@@ -76,13 +76,13 @@ For Bootstrap to compile, make sure you install and use the required loaders: [s
### Importing Compiled CSS
-Alternatively, you may use Bootstrap's ready-to-use css by simply adding this line to your project's entry point:
+Alternatively, you may use Bootstrap's ready-to-use CSS by simply adding this line to your project's entry point:
{% highlight js %}
import 'bootstrap/dist/css/bootstrap.min.css';
{% endhighlight %}
-In this case you may use your existing rule for `css` without any special modifications to webpack config except you don't need `sass-loader` just [style-loader](https://github.com/webpack-contrib/style-loader) and [css-loader](https://github.com/webpack-contrib/css-loader).
+In this case you may use your existing rule for `css` without any special modifications to webpack config, except you don't need `sass-loader` just [style-loader](https://github.com/webpack-contrib/style-loader) and [css-loader](https://github.com/webpack-contrib/css-loader).
{% highlight js %}
...