Milan Simek
Milan Simek
Found a fix using the following CSS: ```css .is_stuck { transform:translate3d(0,0,0); } ``` It seems scrolling doesn't work properly in chrome 65 whenever a fixed element is added to the...
It seems that there's a bug in Chrome 65 that messes up scrolling when a fixed element is added to the page. Either scrolling stops or the element won't be...
It seems they're working on a fix: https://bugs.chromium.org/p/chromium/issues/detail?id=797708&desc=2#c44 I personally completely ditched sticky kit on our website, and moved to position:sticky in conjunction with the IntersectionObserver API. (had to rewrite...
Oh yeah, don't forget to cross browser test this solution. The CSS property can cause some rendering issues occasionally
Yes, I notice that also indeed. You're also using position:sticky in this case or still the sticky kit library?
Same issue when using position:sticky. They call it Edge, but it's just IE with another name.
@tariqbuilds Maybe you should archive the project or put a warning in the readme as long as this isn't patched?
No it doesn't. My pull request is for srcset attributes, not for source tags inside a picture tag.
I have created a pull request #147 which adds srcset support
@splimter I think the peer dependency version also needs to be updated in package.json? Right now only v3 is added: ``` "peerDependencies": { "svelte": "^3.53.1" }, ``` Most likely it...