FIX: global selector needed to avoid clicks registering on other elements (#25445)

This commit is contained in:
Kris 2024-01-26 17:24:21 -05:00 committed by GitHub
parent 3714a6f222
commit 6d57da1d6e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -223,7 +223,8 @@
.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;
}