enable pointer events for element that has new classname in newer versions of mkdocs-material

Signed-off-by: Morgan Bentell <mbentell@spotify.com>
This commit is contained in:
Morgan Bentell
2023-02-27 13:53:20 +01:00
parent 991ca57545
commit 54a1e133b5
2 changed files with 6 additions and 1 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-techdocs': patch
---
Fix bug that caused next and previous links not to work with certain versions of mkdocs-material
@@ -108,7 +108,7 @@ export default ({ theme, sidebar }: RuleOptions) => `
pointer-events: none;
}
.md-footer-nav__link {
.md-footer-nav__link, .md-footer__link {
pointer-events: all;
}