by Benito Serna

Styler gem and Tachyons components

A list of examples from the list of Tachyons components, showing you how you can use the styler gem to define the styles composing the tachyons css classes.

< Back to index

Square

avatar
<%
  styles = Styler.new do
    style :container, %w(pa4 tc)
    style :img, %w(h3 w3 dib)
  end
%>

<div class="<%= styles.container %>">
  <img src="http://tachyons.io/img/logo.jpg" class="<%= styles.img %>" alt="avatar">
</div>