From 009d561c15c2cf622362a8672c1e9a8d774f3ec2 Mon Sep 17 00:00:00 2001 From: 0x009922 Date: Tue, 22 Jun 2021 12:13:30 +0300 Subject: [PATCH 1/2] fix: set fixed height instead of `min-height` --- src/styles/input.scss | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/styles/input.scss b/src/styles/input.scss index 4491eff6..47b03225 100644 --- a/src/styles/input.scss +++ b/src/styles/input.scss @@ -24,7 +24,7 @@ $input-padding-left: $s-basic-spacing * 2 - $input-border-width; border-style: solid; border-width: $input-border-width; font-family: $s-font-family-default; - min-height: $s-size-big; + height: $s-size-big; padding: $input-padding-top $input-padding-left; position: relative; width: 100%; @@ -46,11 +46,11 @@ $input-padding-left: $s-basic-spacing * 2 - $input-border-width; } &.s-size-medium { - min-height: $s-size-medium; + height: $s-size-medium; } &.s-size-small { - min-height: $s-size-small; + height: $s-size-small; } .s-placeholder { From c3bf7e27d6e68f4a59a3562b19d7ace281613db3 Mon Sep 17 00:00:00 2001 From: 0x009922 Date: Tue, 22 Jun 2021 14:02:21 +0300 Subject: [PATCH 2/2] build: up version to 0.9.8 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index e9824326..2104a951 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@soramitsu/soramitsu-js-ui", - "version": "0.9.7", + "version": "0.9.8", "private": false, "publishConfig": { "registry": "https://nexus.iroha.tech/repository/npm-soramitsu/"