We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 969c5ad commit 633dbc8Copy full SHA for 633dbc8
src/core/components/mod-icon/mod-icon.scss
@@ -23,6 +23,11 @@
23
background-color: transparent;
24
line-height: var(--size);
25
26
+ /* Fix for iOS rendering bug: when combining filter and margin
27
+ with a nearby overflow: scroll element, the filter may render incorrectly.
28
+ Applying transform: translateZ(0) forces proper GPU compositing. */
29
+ transform: translateZ(0);
30
+
31
&.colorize {
32
&.version_current {
33
@each $type, $value in $activity-icon-color-filters {
0 commit comments