Fix scrolling in old WBTs

This commit is contained in:
Christian Cueni 2024-01-08 14:43:07 +01:00
parent 4910eb00d0
commit cce3198d9a
1 changed files with 1 additions and 6 deletions

View File

@ -10,12 +10,7 @@ const props = defineProps<{
<template>
<LearningContentSimpleLayout :learning-content="props.content">
<div class="h-screen">
<iframe
width="100%"
height="100%"
scrolling="no"
:src="props.content.content_url"
/>
<iframe width="100%" height="100%" :src="props.content.content_url" />
</div>
</LearningContentSimpleLayout>
</template>