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 a200024 commit 0b9b582Copy full SHA for 0b9b582
src/lib/input/input-container.scss
@@ -225,11 +225,14 @@ $mat-input-underline-disabled-background-image:
225
// Wrapper for the hints and error messages. Provides positioning and text size.
226
// Note that we're using `top` in order to allow for stacked children to flow downwards.
227
.mat-input-subscript-wrapper {
228
+ $line-height: 1.2em;
229
+
230
position: absolute;
231
font-size: 75%;
232
top: 100%;
233
width: 100%;
- margin-top: -$mat-input-wrapper-spacing;
234
+ margin-top: -$line-height;
235
+ line-height: $line-height;
236
overflow: hidden; // prevents multi-line errors from overlapping the input
237
}
238
0 commit comments