Skip to content

Instantly share code, notes, and snippets.

@tanmancan
tanmancan / Extend headers
Created April 20, 2015 00:01
Extend header styles as classes for styling purposes
// Extend default header styles to classes for additonal customization
@each $header in 'h1', 'h2', 'h3', 'h4', 'h5', 'h6' {
.#{$header}{
@extend #{$header};
}
}