first commit
This commit is contained in:
17
vendor/yiisoft/yii2-bootstrap5/docs/guide/topics-sass.md
vendored
Normal file
17
vendor/yiisoft/yii2-bootstrap5/docs/guide/topics-sass.md
vendored
Normal file
@ -0,0 +1,17 @@
|
||||
Using the .sass files of Bootstrap directly
|
||||
===========================================
|
||||
|
||||
If you want to include the [Bootstrap css directly in your sass files](https://getbootstrap.com/getting-started/#customizing)
|
||||
you may need to disable the bootstrap css files loaded by this extension.
|
||||
You can do this by setting the css property of [[yii\bootstrap5\BootstrapAsset|BootstrapAsset]] to be empty.
|
||||
For this, you need to configure the `assetManager` [application component](https://github.com/yiisoft/yii2/blob/master/docs/guide/structure-application-components.md) as follows:
|
||||
|
||||
```php
|
||||
'assetManager' => [
|
||||
'bundles' => [
|
||||
'yii\bootstrap5\BootstrapAsset' => [
|
||||
'css' => [],
|
||||
]
|
||||
]
|
||||
]
|
||||
```
|
||||
Reference in New Issue
Block a user