v15.5.0

Before you upgrade, please take note of any breaking changes and deprecation notices which may affect your site. View the Upgrade Guide to see examples of how to address breaking changes.

New features ✨

<div class="bg-primary-25"></div>
  • content inside the Content Block can now be split into multiple columns #1152
    • .content-block--2-cols - two columns
    • .content-block--3-cols - three columns
<div class="content-block content-block--2-cols">
  <div class="content-block__inner">...</div>
</div>
  • the first heading inside a Content Block can span across all columns - .content-block--title-row #1152
<div class="content-block content-block--2-cols content-block--title-row">
  <div class="content-block__inner">...</div>
</div>
  • the first heading inside a Content Block can sit in the first column while the rest of the content is pushed to the next column(s) - .content-block--title-col #1152
<div class="content-block content-block--2-cols content-block--title-col">
  <div class="content-block__inner">...</div>
</div>
  • new text-button mixin #1171
.class {
  @mixin text-button;
}
  • new Text Button theme vars #1171
    • --col-btn-text-text
    • --col-btn-text-text-hover
    • --col-btn-text-text-active
    • --col-btn-text-text-disabled
    • --col-btn-text-bg
    • --col-btn-text-bg-hover
    • --col-btn-text-bg-active
    • --col-btn-text-bg-disabled
    • --col-btn-text-outline

Bug fixes 🐛

Other changes