Unable to override $theme-color in bootstrap 4

前端 未结 4 814
無奈伤痛
無奈伤痛 2020-12-24 03:00

It\'s bootstrap 4.0 with SASS

My style.scss file contains the following code:

@import \"../bootstrap/scss/bootstrap\";

@im         


        
4条回答
  •  情深已故
    2020-12-24 03:40

    This got me too. You need to import functions.scss into your scss file before variables.

    @import '../../node_modules/bootstrap/scss/functions';
    @import 'assets/styles/variables';
    @import '../../node_modules/bootstrap/scss/bootstrap';
    

    Your paths may differ.

    This is with Bootstrap 4 Beta 1.

提交回复
热议问题