diff --git a/CHANGELOG.md b/CHANGELOG.md index 96c536d..482305f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # CHANGELOG +## v6.0.5 +### Fixed +- BUG 3870819: [Select Input] Text in select field should not be cut off with browser zoom. + ## v6.0.4 ### Fixed - Handling the error during the download of the thumbnail. Instead to show the broken images symbol, fallback to the default user-icon. diff --git a/lib/components/Input/SelectInput.module.scss b/lib/components/Input/SelectInput.module.scss index 744527e..aeaba84 100644 --- a/lib/components/Input/SelectInput.module.scss +++ b/lib/components/Input/SelectInput.module.scss @@ -29,6 +29,7 @@ $line-height: 4*$grid-size; @include md-box(); width: 100%; height: $input-height; + line-height: $input-height; padding: 0 6*$grid-size 0 3*$grid-size; outline: none; -webkit-appearance: none; diff --git a/package.json b/package.json index 3c5090a..9001015 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@microsoft/azure-iot-ux-fluent-controls", - "version": "6.0.4", + "version": "6.0.5", "description": "Azure IoT UX Fluent Controls", "main": "./lib/index.js", "types": "./lib/index.d.ts",