-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix: grunt-sass doesn't allow array for input scss files * Add: custom_bootstrap.scss to build the custom bootstrap css * Unify: use single quotes in scss files
- Loading branch information
Showing
6 changed files
with
20 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
// Bootstrap dependencies - javascript and fonts must be copied separately | ||
// font-awesome is included by site.scss | ||
// This is the import file for site scss files | ||
// which are using variables and Bootstrap functions / mixins | ||
|
||
@import "node_modules/bootstrap/scss/functions"; | ||
@import 'node_modules/bootstrap/scss/functions'; | ||
|
||
@import './custom_variables'; | ||
|
||
@import "node_modules/bootstrap/scss/variables"; | ||
@import "node_modules/bootstrap/scss/mixins"; | ||
@import 'node_modules/bootstrap/scss/variables'; | ||
@import 'node_modules/bootstrap/scss/mixins'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
// Input file for the custom Bootstrap build | ||
@import './custom_variables'; | ||
@import 'node_modules/bootstrap/scss/bootstrap'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters