Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

why inspections showing scss file instead of bootstrap.css?

When I do inspect element on one the row div it shows the element belongs to _grid.scss instead of bootstrap.css. And even the column in the row are not displaying correctly as it should be using bootstrap. Can someone clear this confusion?

I don't have any file in my css named as _grid.scss and the path it is referring to is empty as well.

TIA

like image 655
safina Avatar asked Oct 05 '18 11:10

safina


2 Answers

There are some default SCSS available in bootstrap. More Information

like image 148
Ahmadali Maknojiya Avatar answered Nov 14 '22 05:11

Ahmadali Maknojiya


Remove bootstrap.css.map that means source map.

You can read more about source maps there https://medium.com/@toolmantim/getting-started-with-css-sourcemaps-and-in-browser-sass-editing-b4daab987fb0

Alternatively you can disable in your inspector tool settings. e.g. in chrome: How do you disable source maps in chrome developer tools?

like image 42
Roman Pokrovskij Avatar answered Nov 14 '22 06:11

Roman Pokrovskij