FIX: Workaround for Edge issue with clicks on SVGs
- Related Edge issue at https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/10583086/
This commit is contained in:
parent
400eea4d13
commit
28283c2396
|
@ -11,6 +11,12 @@
|
|||
overflow: visible;
|
||||
}
|
||||
|
||||
// Fixes Edge bug with SVG elements not triggering click event
|
||||
svg,
|
||||
svg use {
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
// Stacked Icons
|
||||
// Usage:
|
||||
// <span class="fa-stack">
|
||||
|
|
Loading…
Reference in New Issue