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 da2eced commit 0ed34c7Copy full SHA for 0ed34c7
packages/components/src/components/loading/_loading.scss
@@ -66,6 +66,16 @@
66
stroke-dashoffset: -22;
67
}
68
69
+ // Negative values for `stroke-dashoffset` are not supported in Safari
70
+ @media not all and (min-resolution: 0.001dpcm) {
71
+ @supports (-webkit-appearance: none) and (stroke-color: transparent) {
72
+ circle.#{$prefix}--loading__background {
73
+ stroke-dashoffset: 0;
74
+ stroke-dasharray: 265;
75
+ }
76
77
78
+
79
.#{$prefix}--loading-overlay {
80
position: fixed;
81
top: 0;
0 commit comments