Merged in fix/remove-myvbv-scrollbar-in-wbts (pull request #310)

Remove scrollbar by restricting the height
This commit is contained in:
Christian Cueni 2024-03-25 10:02:43 +00:00
commit ccf9ce8f5d
1 changed files with 1 additions and 2 deletions

View File

@ -6,10 +6,9 @@ const props = defineProps<{
content: LearningContent;
}>();
</script>
<template>
<LearningContentSimpleLayout :learning-content="props.content">
<div class="h-screen">
<div class="h-[calc(100vh-222px)] md:h-[calc(100vh-238px)]">
<iframe width="100%" height="100%" :src="props.content.content_url" />
</div>
</LearningContentSimpleLayout>