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>buttonhoverandfocusstates now correctly change colour #426
Other changes
cssclasses were being wrapped by@mediaqueries creating a lot of duplication. We refactored the codebase so all@mediaqueries are now nested inside their respectiveclasses#428
Before:
@media (--bp-tablet) {
.class {
...
}
}
@media (--bp-wide) {
.class {
...
}
}
After:
.class {
@media (--bp-tablet) {
...
}
@media (--bp-x-wide) {
...
}
}