@eturnity/eturnity_reusable_components 1.0.52 → 1.0.53

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.0.52",
3
+ "version": "1.0.53",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "dev": "vue-cli-service serve",
@@ -86,11 +86,8 @@ const DropdownRow = styled.td``
86
86
 
87
87
  const ComponentItem = styled.div`
88
88
  padding-left: 12px;
89
-
90
- span {
91
- overflow: hidden;
92
- text-overflow: ellipsis;
93
- }
89
+ overflow: hidden;
90
+ text-overflow: ellipsis;
94
91
  `
95
92
 
96
93
  const containerAttrs = { colSpan: Number }
@@ -153,11 +150,14 @@ const OptionsItem = styled("div", containerAttrs)`
153
150
  display: grid;
154
151
  grid-template-columns: repeat(${(props) => props.colSpan}, minmax(0, 1fr));
155
152
  grid-gap: 12px;
156
- overflow: hidden;
157
- text-overflow: ellipsis;
158
153
  padding: 10px;
159
154
  height: max-content;
160
155
 
156
+ span {
157
+ overflow: hidden;
158
+ text-overflow: ellipsis;
159
+ }
160
+
161
161
  &:hover {
162
162
  background-color: ${(props) => props.theme.colors.grey5};
163
163
  }