* Use pastel colors * Whit text * Slugify/anchor section headings * Use classes instead of style attributes * Use fancy-pants SCSS * Simplify a tad * TIL text-inherit helper Co-authored-by: Vanessa Yuen <6842965+vanessayuenn@users.noreply.github.com> * Remove redundant `style` attr Co-authored-by: Vanessa Yuen <6842965+vanessayuenn@users.noreply.github.com> Co-authored-by: Vanessa Yuen <6842965+vanessayuenn@users.noreply.github.com>
6 lines
202 B
HTML
6 lines
202 B
HTML
{% assign slug = note.heading | slugify %}
|
|
|
|
<h4 id="{{ slug }}" class="release-notes-section-heading text-uppercase text-bold">
|
|
<a href="#{{ slug }}" class="text-inherit">{{ note.heading }}</a>
|
|
</h4>
|