Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions _includes/download/board.html
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,13 @@ <h3>CircuitPython {{ version.version }}</h3>
</span>
</p>
{% endif %}
{% if page.features %}
<p>Features:
{% for feature in page.features %}
<span class="feature-span">{{feature}}</span>
{% endfor %}
</p>
{% endif %}
</div>
{% endfor %}
{% endif %}
Expand Down
10 changes: 10 additions & 0 deletions assets/sass/pages/_download.scss
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,16 @@
}
}
}
.feature-span {
padding: 2px 4px 2px 4px;
margin-left: 3px;
margin-bottom: 3px;
display: inline-block;
background-color: $purple;
color: #fff;
border-radius: 5px;
font-size: 14px;
}
}

@media (max-width: $screen-lg) {
Expand Down