-
-
Notifications
You must be signed in to change notification settings - Fork 79.1k
Closed
Description
It seems to me there is an error in explaining the file structure for customizing bootstrap as explained in this link (https://getbootstrap.com/docs/4.0/getting-started/theming/#file-structure)
- In the section Sass - File Structure
-- it states, Assuming you’ve downloaded our source files or are using a package manager, you’ll have a file structure that looks like this:
your-project/
├── scss
│ └── custom.scss
└── node_modules/
└── bootstrap
├── js
└── scss
-- this is not what I have from the repo here nor from the source files download
-- I see two errors
1- there is no file custom.scss
2- if you download the source files they are not located in node_modules. They would be if using npm but this seems to combine the two methods
-- I would be happy to work on this if it is deemed needed.