Skip to content

Commit

Permalink
fix: tooltips fixed (#178)
Browse files Browse the repository at this point in the history
  • Loading branch information
liana-p committed Oct 28, 2023
1 parent 693bd6c commit e39d2c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/narrat/src/components/utils/floating-tooltip.vue
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const height = ref(150);
const element = ref<HTMLElement | null>(null);
const props = defineProps<FloatingTooltipProps>();
const screenWidth = computed(() => props.screenWidth ?? window.innerWidth);
const screenHeight = computed(() => props.screenWidth ?? window.innerHeight);
const screenHeight = computed(() => props.screenHeight ?? window.innerHeight);
const style = computed((): any => {
const screenMargin = props.screenMargin ?? 5;
const cssStyle: any = {};
Expand Down

1 comment on commit e39d2c7

@vercel
Copy link

@vercel vercel bot commented on e39d2c7 Oct 28, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

narrat-editor-demo – ./packages/narrat-editor

narrat-editor-demo-git-main-nialna.vercel.app
narrat-editor-demo.vercel.app
narrat-editor-demo-nialna.vercel.app
demo.narrat.dev

Please sign in to comment.