1
0
mirror of https://github.com/thangisme/notes.git synced 2024-06-03 01:40:57 +00:00
notes/docs/ui-components/labels.md

50 lines
699 B
Markdown
Raw Normal View History

2017-03-27 01:09:19 +00:00
---
layout: default
title: Labels
parent: UI Components
nav_order: 3
---
# Labels
Use labels as a way to add an additional mark to a section of your docs. Labels come in a few colors. By default, labels will be blue.
<div class="code-example" markdown="1">
Default label
{: .label }
Blue label
2019-01-14 19:18:09 +00:00
{: .label .label-blue }
2017-03-27 01:09:19 +00:00
Stable
2019-01-14 19:18:09 +00:00
{: .label .label-green }
2017-03-27 01:09:19 +00:00
New release
2019-01-14 19:18:09 +00:00
{: .label .label-purple }
2017-03-27 01:09:19 +00:00
Coming soon
2019-01-14 19:18:09 +00:00
{: .label .label-yellow }
2017-03-27 01:09:19 +00:00
Deprecated
2019-01-14 19:18:09 +00:00
{: .label .label-red }
2017-03-27 01:09:19 +00:00
</div>
```markdown
Default label
{: .label }
Blue label
2019-01-14 19:18:09 +00:00
{: .label .label-blue }
2017-03-27 01:09:19 +00:00
Stable
2019-01-14 19:18:09 +00:00
{: .label .label-green }
2017-03-27 01:09:19 +00:00
New release
2019-01-14 19:18:09 +00:00
{: .label .label-purple }
2017-03-27 01:09:19 +00:00
Coming soon
2019-01-14 19:18:09 +00:00
{: .label .label-yellow }
2017-03-27 01:09:19 +00:00
Deprecated
2019-01-14 19:18:09 +00:00
{: .label .label-red }
2017-03-27 01:09:19 +00:00
```