@eturnity/eturnity_reusable_components 1.1.90 → 1.1.93
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/package.json
CHANGED
|
@@ -157,7 +157,8 @@ const UnitContainer = styled("span", inputProps)`
|
|
|
157
157
|
const ErrorMessage = styled.div`
|
|
158
158
|
font-size: 14px;
|
|
159
159
|
color: ${(props) => props.theme.colors.red};
|
|
160
|
-
|
|
160
|
+
position: absolute;
|
|
161
|
+
top: calc(100% + 1px);
|
|
161
162
|
`
|
|
162
163
|
|
|
163
164
|
const LabelWrapper = styled.div`
|
|
@@ -98,7 +98,7 @@ const InputWrapper = styled("div", inputAttrs)`
|
|
|
98
98
|
position: relative;
|
|
99
99
|
display: grid;
|
|
100
100
|
align-items: center;
|
|
101
|
-
gap:
|
|
101
|
+
gap: 8px;
|
|
102
102
|
grid-template-columns: ${(props) =>
|
|
103
103
|
!props.hasLabel
|
|
104
104
|
? "1fr"
|
|
@@ -111,7 +111,7 @@ const ErrorMessage = styled.div`
|
|
|
111
111
|
font-size: 14px;
|
|
112
112
|
color: ${(props) => props.theme.colors.red};
|
|
113
113
|
position: absolute;
|
|
114
|
-
|
|
114
|
+
top: calc(100% + 1px);
|
|
115
115
|
`
|
|
116
116
|
|
|
117
117
|
const InputLabel = styled.div`
|