Skip to content

Commit 691b38b

Browse files
committed
fix(input-label-error): bad display (flex instead of block)
1 parent 3a2c900 commit 691b38b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1212
- `Dropdown` placement is not limited to `bottom`, `bottom-start` and `bottom-end` anymore.
1313
- `Tooltip` anchor is wrapped only if it is not a Button, IconButton, Icon or React HTML Element. Removed `inline-block` display style.
1414
- Fixed `Popover` maxHeight when value is NaN.
15+
- Fixed `InputLabel` and `InputHelper` bad display (flex instead of block)
1516

1617
## [0.25.5][] - 2020-07-23
1718

packages/lumx-core/src/scss/components/input-helper/lumapps/_mixins.scss

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
@mixin lumx-input-helper($theme) {
22
@include lumx-typography($lumx-input-helper-typography);
33

4-
display: flex;
5-
align-items: center;
4+
display: block;
65

76
@if $theme == lumx-base-const('theme', 'LIGHT') {
87
color: lumx-color-variant('dark', 'L2');

packages/lumx-core/src/scss/components/input-label/lumapps/_mixins.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
@mixin lumx-input-label($theme) {
22
@include lumx-typography($lumx-input-label-typography);
33

4-
display: flex;
4+
display: block;
55

66
@if $theme == lumx-base-const('theme', 'LIGHT') {
77
color: lumx-color-variant('dark', 'N');

0 commit comments

Comments
 (0)