«   Previous tip Next tip   »

Chrome DevTools: Edit Sass variables and more with Sass compilation in DevTools

Last updated: 3rd December 2020
Edit Sass variables and more with Sass compilation in DevTools

Update 2021: This experiment is currently unavailable within DevTools. However, if you'd like to get this workflow working, do the following:

  1. Use DevTools Workspaces to map your local website folder onto DevTools.
  2. Once you can persist your changes disk (after editing them via DevTools), use a build tool such as Gulp, Webpack, Parcel, Snowpack, Rollup etc. to watch for changes the files on your system.
  3. Configure your build tool of choice to activate browsersync, livereload, or some other "hot-loader"-style plugin to automatically reload the webpage, or live inject changed CSS into the page.
    • My personal preference is to reload the page with something like livereload, this is to ensure I'm starting at a "clean slate" each time.

While this experiment is unavailable, you can read about Live Sass experiment and how it used to work

You can enable the Live Sass DevTools experiment and edit your Sass code directly within DevTools, to see the results on your web page immediately. Changes you make in the Styles Pane are reflected in the Sass file, even if you are utilising Sass specific features like variables.

If you change a Sass variable within DevTools, no page reload is needed to visually see the update.

You can also set up Workspaces in DevTools to have your Sass changes persist to disk.

Extra

«   Previous tip Next tip   »

Sign up to receive a developer tip, in the form of a gif, in your inbox each week