Empêche le micro-scroll bloquant dans les intégrations iframe

pull/1896/head
Johan Girod 2021-12-16 09:23:08 +01:00
parent fac03e764d
commit 59b9b80f42
2 changed files with 3 additions and 4 deletions

View File

@ -41,7 +41,6 @@ for (var key in iframeAttributes) {
iframeResizer(
{
interval: 0,
scrolling: 'auto',
heightCalculationMethod: 'lowestElement',
},
iframe

View File

@ -1,17 +1,17 @@
import Privacy from 'Components/layout/Footer/Privacy'
import { Spacing } from 'DesignSystem/layout'
export default function IframeFooter() {
return (
<>
<div
className="ui__ container notice"
style={{
textAlign: 'center',
paddingTop: '3rem',
paddingBottom: '1rem',
}}
>
<Spacing xl />
<Privacy />
<Spacing lg />
</div>
</>
)