TylerBarnes / gatsby-plugin-transition-link

A link component for page transitions in gatsby
537 stars 71 forks source link

AniLink animation issue #232

Open exocode opened 3 years ago

exocode commented 3 years ago

Hi there,

after the issue, that my content was not visible (layout was) by overwriting

body .tl-edges {
  overflow-x: unset;
}

I took an example AniLink

import Link from "gatsby-plugin-transition-link/AniLink"

 <Link
            paintDrip
            color="grey"
            duration={5}
            to={previous}
            className="ln"
          >
       Previous
          </Link>

But this is my result:

2020-09-10 16 52 32

Equally what size my view has, it is always is covering only the half one window width

What could cause that issue?

Many thanks in advance

Jan