comand-component-library 3.3.26 → 3.3.27

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.
@@ -157,8 +157,8 @@ export default {
157
157
  this.$nextTick( () => {
158
158
  const verticalOffset = 25
159
159
  // this.$refs.tooltip.addEventListener("keyup", this.hideTooltip)
160
- this.$refs.tooltip.style.left = this.pointerX / 0 + "rem"
161
- this.$refs.tooltip.style.top = (this.pointerY + verticalOffset) / 0 + "rem"
160
+ this.$refs.tooltip.style.left = (this.pointerX / 10) + "rem"
161
+ this.$refs.tooltip.style.top = ((this.pointerY + verticalOffset) / 10) + "rem"
162
162
  })
163
163
  }
164
164
  }
@@ -120,7 +120,6 @@ export default {
120
120
  max-width: var(--max-width);
121
121
  margin: 0 auto;
122
122
  padding: var(--default-padding);
123
- container-type: inline-size;
124
123
  }
125
124
 
126
125
  &.sticky {