trulia / hologram

A markdown based documentation system for style guides.
http://trulia.github.io/hologram
Other
2.16k stars 199 forks source link

SCSS variables and mixins seem to be ignored #260

Open wouter-muller opened 8 years ago

wouter-muller commented 8 years ago

I am using SCSS variables and mixins to do some of the styling of for example my buttons. These variables/mixins are located in different partials than my _buttons.scss, therefore these styles are not used in my hologram Styleguide.

Is there a solution for this? (sorry if this is stated in your docs, i have read them, but can't find it)

wouter-muller commented 8 years ago

I think something else is going on, i am playing around with the hologram-example repository.

When i go into the components/typography/typography.css, and change:

h1{
  font-size: 36px;
}

into:

h1{
  font-size: 136px;
} 

And then run hologram -c config.yml, it still has 36px for the font-size of the h1.

But changes i make to the /*doc part do get outputted correctly...