-
Notifications
You must be signed in to change notification settings - Fork 6.8k
Select should adjust height when font-size changes #2127
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Just for reference Kara, I put a md-select after a md-input, and it overlaps without changing the font size. <div>
<md-input-container>
<input md-input type="text" name="name" placeholder="Full name" formControlName="name">
</md-input-container>
</div>
<div>
<md-select placeholder="Company Name" formControlName="company">
<md-option *ngFor="let company of companies" [value]="company.value">{{ company.viewValue}}</md-option>
</md-select>
</div> |
I had the same issue.
|
@P-Jan work around partly worked for me. I only needed the
And I added
|
Any news on this? This issue still seems to exist in the latest version... |
I've fixed the alignment issue with this code:
You have to play with the |
Still no fix for this? |
Please fix this issue! Also the space between label and selected option is not the same than between label and text of an input field if you change the font-size. |
AFAIK this will be fixed by #6488 |
Should be resolved with the existence of |
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
Uh oh!
There was an error while loading. Please reload this page.
Currently when you change the font size of the select to override the default font size, the placeholder doesn't adjust to make space for a larger font. Md-input does do this, so select should as well.
The text was updated successfully, but these errors were encountered: