Skip to content

Latest commit

 

History

History
17 lines (15 loc) · 744 Bytes

topics-sass.md

File metadata and controls

17 lines (15 loc) · 744 Bytes

Using the .sass files of Bootstrap directly

If you want to include the Bootstrap css directly in your sass files 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 as follows:

    'assetManager' => [
        'bundles' => [
            'yii\bootstrap5\BootstrapAsset' => [
                'css' => [],
            ]
        ]
    ]