CSS Notes
  • Сделать границу прерывистой
  • Зачем свойство transform?
  • Настраиваем сниппеты в vs code
  • Настраиваем адаптив по верстке
  • Делаем меню-бургер
  • How to compile related scss file using Live Sass Compiler VS Code?
  • Как создать свой иконочный шрифт
  • CSS Mobile first
  • Единицы измерения в css
  • Виды границ кнопок
  • Сделать бесконечную анимацию
  • Сделать галерею гридом
  • Идеи для дизайна
Powered by GitBook
On this page

Was this helpful?

How to compile related scss file using Live Sass Compiler VS Code?

LogoHow to compile related scss file using Live Sass Compiler?Stack Overflow

Do two thinks:

  1. Every included file like base.scss must start with a underscore => _base.scss

  2. edit your settings.json and add:

    "liveSassCompile.settings.includeItems": ["./path/to/your/main.scss"]

If you now change _base.scss live sass compiler will compile main.scss! :)

Hope it help!

  • Tipp: To get the correct path, right click on the file in vsCode and copy relative path.

PreviousДелаем меню-бургерNextКак создать свой иконочный шрифт

Last updated 4 years ago

Was this helpful?