v11.7.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.

Bug fixes 🐛

  • Pathfinder buttons now show correctly on tablet viewports #429
  • Buttons - <a class="button cta">...</a> button hover and focus states now correctly change colour #426

Other changes

  • css classes were being wrapped by @media queries creating a lot of duplication. We refactored the codebase so all @media queries are now nested inside their respective classes #428

Before:

@media (--bp-tablet) {
  .class {
    ...
  }
}

@media (--bp-wide) {
  .class {
    ...
  }
}

After:

.class {
  @media (--bp-tablet) {
    ...
  }

  @media (--bp-x-wide) {
    ...
  }
}