How can we teach product designers to write more effective problem statements?
Read more at the sourceAll posts by Christian Reuter
Ember for Designers: Components
Part of our ongoing "Ember for Designers" series. Learn how to get started with Ember by leveraging components.
Read more at the sourceEmber for Designers: Alternate States
Learn how to design Ember apps for loading, error, and empty states.
Read more at the sourceExpanding the Raleigh Office
We’re hiring a designer and a developer in Raleigh. Come join our team.
Read more at the sourceSass’s @content Directive Use Cases
<p>Sass 3.2 added the <a href="http://sass-lang.com/documentation/file.SASS_REFERENCE.html#mixin-content"><code>@content</code> directive</a>, which allows
us to pass a content block into a mixin.</p>
<pre><code>@mixin apply-to-ie6-only {
* html {
@content
}
}
@include apply-to-ie6-only {
#logo {
background-image: url(/logo.gif);
}
}
</code></pre>
<p>Generates:</p>
Read more at the source