Forum Discussion
sudeshwithanage
Mar 18, 2018Copper Contributor
Office UI fabric TextField control height
Hi,
Office UI fabric TextField control was added to SPFx web part. Need to change the text box height via css. Although the style is changed it does not get effected fro TextField but other con...
Russell Gove
Mar 18, 2018Iron Contributor
you need to changed the ms-TextField class in your scss file and not have a prefix added to it. Like this:
:global {
.ms-TextField{
height: 400px;
}
}
for more info see https://n8d.at/blog/how-to-better-control-css-class-naming-in-spfx/