comand-component-library 3.3.26 → 3.3.27
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/comand-component-library.js +210 -197
- package/dist/comand-component-library.umd.cjs +4 -4
- package/dist/style.css +1 -1
- package/package.json +2 -2
- package/src/App.vue +37 -32
- package/src/assets/styles/logos-iconfont.css +3 -3
- package/src/components/CmdBox.vue +43 -19
- package/src/components/CmdBoxWrapper.vue +6 -2
- package/src/components/CmdMainNavigation.vue +1 -1
- package/src/components/CmdMultistepFormProgressBar.vue +1 -1
- package/src/components/CmdThumbnailScroller.vue +3 -1
- package/src/components/CmdTooltip.vue +2 -2
- package/src/components/CmdWidthLimitationWrapper.vue +0 -1
- /package/src/assets/fonts/iconfonts/logos-iconfont/{icomoon.woff → icomoon-logos.woff} +0 -0
@@ -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 /
|
161
|
-
this.$refs.tooltip.style.top = (this.pointerY + verticalOffset) /
|
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
|
}
|
File without changes
|