@eturnity/eturnity_reusable_components 1.1.88 → 1.1.91

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eturnity/eturnity_reusable_components",
3
- "version": "1.1.88",
3
+ "version": "1.1.91",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "dev": "vue-cli-service serve",
@@ -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
- padding-top: 16px;
160
+ position: absolute;
161
+ bottom: -18px;
161
162
  `
162
163
 
163
164
  const LabelWrapper = styled.div`
@@ -99,7 +99,7 @@ const InputWrapper = styled("div", inputAttrs)`
99
99
  position: relative;
100
100
  display: grid;
101
101
  align-items: center;
102
- gap: 14px;
102
+ gap: 8px;
103
103
  grid-template-columns: ${(props) =>
104
104
  props.alignItems === "vertical" || !props.hasLabel ? "1fr" : "auto 1fr"};
105
105
  `
@@ -195,7 +195,7 @@ const TableContainer = styled.table`
195
195
  &.footer {
196
196
  td {
197
197
  background-color: ${(props) => props.theme.colors.grey5};
198
- border-top: 1px solid ${(props) => props.theme.colors.grey4};
198
+ /* border-top: 1px solid ${(props) => props.theme.colors.grey4}; */
199
199
  }
200
200
 
201
201
  .text {