Jo Santana

Results 6 comments of Jo Santana

**IF** you're using Nuxt for SSR, I _partially_ agree with you, @gdomiciano. You have to be careful with the initial page render, due to the fact that it happens from...

Anyone working on this subject? Got all my animations working with `react-plx`, but after applying the full layout, I had to move the scroll target to a specific `div` tag...

Just to help whoever that could be still struggling about this... ``` // pages/index.js import { connect } from "unistore/react"; const UnwrappedIndex = ({ count, hello }) => ( {`${hello}...

You don't need to import this to hide it. Simply: ``` body::-webkit-scrollbar { display: none; } ```

I faced a similar problem and got it resolved by adding the following configuration to the `.npmrc` file, at the root of my project: `link-workspace-packages=false` By doing so, [packages are...