répare le scroll sur ie
parent
1756d90f9a
commit
fd94bfa032
|
@ -7,7 +7,7 @@
|
|||
}
|
||||
|
||||
body {
|
||||
overflow-x: hidden;
|
||||
overflow-x: hidden !important;
|
||||
}
|
||||
|
||||
button {
|
||||
|
|
|
@ -4,6 +4,7 @@ import React from 'react'
|
|||
import { connect } from 'react-redux'
|
||||
import { Link } from 'react-router-dom'
|
||||
import { nextQuestionUrlSelector } from 'Selectors/companyStatusSelectors'
|
||||
import { isIE } from '../../../../utils'
|
||||
|
||||
import type { Match, RouterHistory } from 'react-router'
|
||||
type Props = {
|
||||
|
@ -33,7 +34,8 @@ const CreateMyCompany = ({ match, nextQuestionUrl, history }: Props) => (
|
|||
</Link>
|
||||
</div>
|
||||
)}
|
||||
{!match.isExact && <Scroll.toElement key={history.location.pathname} />}
|
||||
{!isIE() &&
|
||||
!match.isExact && <Scroll.toElement key={history.location.pathname} />}
|
||||
</>
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in New Issue