select-country icon indicating copy to clipboard operation
select-country copied to clipboard

How to increase Width

Open waelbenmustapha opened this issue 4 years ago • 3 comments

Hi , im new to angular and im really not sure if this could be achieved from angular material or if you can add a feature wich allows width modification . i tried everything but couldn't increase the width ,

waelbenmustapha avatar Aug 21 '21 00:08 waelbenmustapha

mat-form-field {
  width: 100%;
}

Add that to your styles.scss

Note it influences every mat form field in your app. Idk if its the right way, but I couldn't find a way to to it otherwise

RHeynsZa avatar Aug 28 '21 15:08 RHeynsZa

Try adding this to the component in cause.

::ng-deep mat-form-field {
  width: 100%;
}

Note: Didn't work with RHeynZa solution but it worked with this one for me.

simionrobert avatar Sep 10 '21 14:09 simionrobert

Add this to your global css file

mat-select-country .mat-form-field {
  width: 100%;
}

It will only apply to mat-form-field nested in mat-select-country.

felixmoroni avatar Sep 28 '22 09:09 felixmoroni