1
0
mirror of synced 2026-01-31 00:01:42 -05:00
Files
docs/includes/release-notes-category-label.html
Kevin Heis 49377f9096 Upgrade Primer CSS to 16 (#18713)
* Upgrade primer to 16

* Upgrade colors in scss

* Get SCSS to build

* Initial dark mode support

* trashcan -> trash

* More specific search browser test

* Fix link color on homepage

* Update overrides.scss

* Upgrade some colors to primer variables

* Hide dark mode support for now

* Apply suggestions from code review

* Update overrides.scss
2021-04-13 16:00:46 +00:00

21 lines
661 B
HTML

{% case section[0] %}
{% when "features" %}
{% assign text = "Features" %}
{% when "bugs" %}
{% assign text = "Bug fixes" %}
{% when "known_issues" %}
{% assign text = "Known issues" %}
{% when "security_fixes" %}
{% assign text = "Security fixes" %}
{% when "changes" %}
{% assign text = "Changes" %}
{% when "deprecations" %}
{% assign text = "Deprecations" %}
{% when "backups" %}
{% assign text = "Backups" %}
{% else %}
{% assign text = "INVALID SECTION" %}
{% endcase %}
<span class="px-3 py-2 text-small text-bold text-uppercase text-mono color-text-inverse release-notes-section-label">{{ text }}</span>