@eturnity/eturnity_reusable_components 1.0.81 → 1.0.82

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.81",
3
+ "version": "1.0.82",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "dev": "vue-cli-service serve",
@@ -241,6 +241,10 @@ const TableContainer = styled.table`
241
241
  visibility: visible;
242
242
  }
243
243
 
244
+ .drag-wrapper {
245
+ background-color: ${(props) => props.theme.colors.grey5};
246
+ }
247
+
244
248
  .arrow-dropdown {
245
249
  visibility: visible;
246
250
  }
@@ -248,8 +252,22 @@ const TableContainer = styled.table`
248
252
 
249
253
  .drag-container {
250
254
  display: table-cell;
251
- width: 12px;
255
+ width: 20px;
256
+ min-width: 20px;
257
+ height: 40px;
252
258
  vertical-align: middle;
259
+ display: grid;
260
+ align-items: center;
261
+ justify-items: center;
262
+ }
263
+
264
+ .drag-wrapper {
265
+ width: 16px;
266
+ height: 36px;
267
+ display: grid;
268
+ align-items: center;
269
+ justify-items: center;
270
+ border-radius: 4px;
253
271
  }
254
272
 
255
273
  .drag-icon {