We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee5cf49 commit 8ba7148Copy full SHA for 8ba7148
src/material-experimental/mdc-progress-spinner/progress-spinner.scss
@@ -11,6 +11,11 @@
11
// Prevents the spinning of the inner element from affecting layout outside of the spinner.
12
overflow: hidden;
13
14
+ // Spinners with a diameter less than half the existing line-height will become distorted.
15
+ // Explicitly set the line-height to 0px to avoid this issue.
16
+ // https://github.com/material-components/material-components-web/issues/7118
17
+ line-height: 0;
18
+
19
&._mat-animation-noopable {
20
&, .mdc-circular-progress__determinate-circle {
21
// The spinner itself has a transition on `opacity`.
0 commit comments