-
-
Notifications
You must be signed in to change notification settings - Fork 5.1k
Closed
Description
In the preflight.css file on line ~540 we see:
*,
*::before,
*::after {
border-width: 0;
border-style: solid;
border-color: config('borderColors.default', currentColor);
}The border-style: solid; style on the catch all (*, not its pseudo-selectors) is causing extra absolutely positioned elements in Google Maps to be broken
I have found that adding a separate selector underneath fixes the problem:
* {
border-style: inherit;
}Before border-style: inherit;
After adding border-style: inherit;
``
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels

