Open gagagast opened 10 years ago
Does the file start with _? If so it's probably the same as #104
As a matter of fact this two issues are connected and it's root cause is #124 since the common path between say:
/styles/sass/partials/_partial1.scss
/styles/sass/partials/_partial2.scss
Is /styles/sass/partials/_
which is not a real path but fails silently.
Hi! Can you say how I can fix this problem in my project? I have much partials scss-files which states with _ and one main.scss with import thems
Thank you!
Hello, When i launch a simple command like : styledocco www\common\scss All scss partials files generate their html file documentation in the default folder (docs) but the styles are not compiled.
Example : _button.scss
/* Buttons
*/
.btn{ padding: 7px 10px; background:$c1; color: #fff; text-transform: uppercase; border-radius: 3px; text-align: center; &--small{ padding: 6px 6px; font-size: 11px; font-size: 1.1rem; } }
An idea ?