Skip to content

Instantly share code, notes, and snippets.

@chrisfromredfin
Created March 29, 2018 17:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chrisfromredfin/d652a7d613412501195652d6668cd5c4 to your computer and use it in GitHub Desktop.
Save chrisfromredfin/d652a7d613412501195652d6668cd5c4 to your computer and use it in GitHub Desktop.
/// @group components
/// @name buttonset
/// @example njk
/// {% set items = [{"name": "do something", "label": "open"}, {"name": "do something else", "label": "close"}] %}
/// {% include 'buttonlist.njk' %}
///
.buttonset {
li {
display: inline-block;
list-style-type: none;
margin-right: 1em;
}
a {
display: inline-block;
@extend %button;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment