FIX: global selector needed to avoid clicks registering on other elements (#25445)
This commit is contained in:
parent
3714a6f222
commit
6d57da1d6e
|
@ -223,7 +223,8 @@
|
||||||
.main-link {
|
.main-link {
|
||||||
@extend .topic-list-main-link;
|
@extend .topic-list-main-link;
|
||||||
|
|
||||||
.raw-topic-link a {
|
.raw-topic-link > * {
|
||||||
|
// important to prevent clicks registering on non-link elements and resulting in a full page reload
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue