styledocco icon indicating copy to clipboard operation
styledocco copied to clipboard

scss compilation

Open gagagast opened this issue 11 years ago • 2 comments
trafficstars

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

<a class="btn">button</a>
<a class="btn btn--small">button</a>

*/

.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 ?

gagagast avatar Oct 20 '14 11:10 gagagast

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.

highvoltag3 avatar Jan 13 '15 20:01 highvoltag3

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!

Enkil avatar Feb 10 '16 02:02 Enkil