@retailcrm/embed-ui-v1-components 0.9.1 → 0.9.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/host.css +4 -1
- package/package.json +1 -1
package/dist/host.css
CHANGED
|
@@ -2049,7 +2049,6 @@
|
|
|
2049
2049
|
.ui-v1-textbox input,
|
|
2050
2050
|
.ui-v1-textbox textarea {
|
|
2051
2051
|
flex-grow: 1;
|
|
2052
|
-
height: calc(var(--height) - 2px);
|
|
2053
2052
|
background: transparent;
|
|
2054
2053
|
border: none;
|
|
2055
2054
|
border-radius: inherit;
|
|
@@ -2069,8 +2068,12 @@
|
|
|
2069
2068
|
.ui-v1-textbox textarea:focus {
|
|
2070
2069
|
outline: none;
|
|
2071
2070
|
}
|
|
2071
|
+
.ui-v1-textbox input {
|
|
2072
|
+
height: calc(var(--height) - 2px);
|
|
2073
|
+
}
|
|
2072
2074
|
.ui-v1-textbox textarea {
|
|
2073
2075
|
min-height: calc(var(--height) - 2px);
|
|
2076
|
+
padding-block: 0;
|
|
2074
2077
|
}
|
|
2075
2078
|
.ui-v1-textbox_outlined input,
|
|
2076
2079
|
.ui-v1-textbox_outlined textarea {
|
package/package.json
CHANGED