Update to docs

This commit is contained in:
Travis Chase 2015-01-22 11:28:45 -06:00
parent e16e8400a9
commit 9ff4bcc27b

View File

@ -82,10 +82,11 @@ $ gem install font-awesome-less
</li> </li>
</ol> </ol>
<p> <p>
If you use Rails, add this to your e.g. <code>application.css</code>, just before <code>*= require_self</code>: If you use Rails, add this to your e.g. <code>application.less</code>:
</p> </p>
{% highlight css %} {% highlight css %}
*= require font-awesome @import "font-awesome-sprockets";
@import "font-awesome";
{% endhighlight %} {% endhighlight %}
</section> </section>
@ -115,10 +116,11 @@ $ gem install font-awesome-sass
</li> </li>
</ol> </ol>
<p> <p>
If you use Rails, add this to your e.g. <code>application.css</code>, just before <code>*= require_self</code>: If you use Rails, add this to your e.g. <code>application.scss</code>:
</p> </p>
{% highlight css %} {% highlight css %}
*= require font-awesome @import "font-awesome-sprockets";
@import "font-awesome";
{% endhighlight %} {% endhighlight %}
</section> </section>