I want to customize my bootstrap with scss so I know that I have to make custom.scss and put some scss code into this - but there ins't working because I don't know where can I pust these file.
the below picture from official website of bootstrap - but it doesn't working
also I did this - and some structor that I fonded in internet
where shall I put custom.scss file to customize bootstrap component?
370 Views Asked by mohsen Ghalandar At
1
There are 1 best solutions below
Related Questions in BOOTSTRAP-4
- How to remove these margins between my Bootstrap 4 links?
- Float nav items to the right in Bootstrap 4?
- What does offset do in Bootstrap 4?
- Webpack: Bootstrap-loader is not able to find installed bootstrap 4 module
- Angular 2 - how to use scss with bootstrap 4 in testing using webpack
- Angular, Bootstrap 4, angular-cli - where to place dependent scss and import it?
- Bootstrap 4 -- branding + navbar items
- bootstrap 4 feedback text doesnt render properly
- Bootstrap 4: How to make top fixed navbar stay in container and not stretch?
- 4 column responsive in Bootstrap
- Bootstrap 4 Dropdown not working
- Change Bootstrap 4 tooltip template without refresh
- Multi-item carousel bootstrap 4
- Vertical alignment in Bootstrap 4
- Align navbar toggle button to the right
Related Questions in SASS
- Gulp wont restart in any of my projects
- Gulp Sass not compiling partials
- Compile SASS files in separate folder with relative assets/urls?
- SASS illegal nesting
- How to make :hover more mobile friendly and accessible?
- Elixir not creating multiple css files
- Editing sass in server
- use sass transformer in intellij dart
- How to load different Scss files with Meteor routed pages
- Strange SASS output when using extends
- Grunt - Compile and import separate sass in dev, but concatenate them when build
- gulp concat after sass
- Ampersand not working in :before in SASS
- How to get started with scssphp
- sass-rails depends on sass v3.2, I need sass v3.4. What is sass-rails' "gemfiles" directory for, and will it help me use sass v3.4?
Related Questions in SCSS-LINT
- Pseudo-class nesting / SCSS Linter Warning
- Disable scss.lint rule for one file in VS Code
- How to apply CSS to specific children of an element
- Angular: Accessing Variables in a Function
- Can I use SCSS in a <style> tag?
- MEDIA QUERY For orientation: landscape but not desktop. how?
- where shall I put custom.scss file to customize bootstrap component?
- How to add an exclamation mark to the end of last list item using css
- How to find CSS/SCSS classes that contains single property
- Error: Cannot find module 'stylelint' Webpack
- how to include sass file in reactjs
- how to use ng-class with multiple condition in ionic 5
- Installing scss-lint with npm without Python
- Typescript + webpack cannot build scss module
- How can I make an element visible on hovering an element from another section?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
It doesn't meter where is your file is. The point is to include your custom variables before variables from bootstrap.
You can create BS file, where you can include BS components and other elements and in this file you can override default variables.
More over, in this case you can optimize your target CSS file.
One more thing - in example I using BS5, in v4 approach the same (because it's SCSS).
Your structure:
Example:
_bs-variables.scss:custom-bootstrap.scss:custom.scss: