Emily Eisenberg

Results 44 comments of Emily Eisenberg

@couturecraigj can you show me the code where you're doing your rendering, or tell me which boilerplate you are using? It sounds like you're not server-side rendering correctly.

Hello @ostrgard! Thank you for your thoughts, I hadn't considered trying to use Aphrodite for resets. It seems a bit orthogonal to our original intention (writing your styles in JS...

(I'm in the hospital, sorry for responding slowly and sorry if I continue to respond slowly) Huh! I'm confused why that doesn't work, I would expect it to. :( Do...

@Justkant scoped styles aren't really relevant to aphrodite since we add unique suffixes to each of our styles already.

(I'm in the hospital, sorry for responding slowly and sorry if I continue to respond slowly) The hashes that we append to class names are based on the styles that...

Huh. Interesting problem! How are you rendering the react components? Can you pass the actual React components between the frames, or do you generate HTML (e.g. with ReactDOMServer.renderToString) and pass...

Interesting! I didn't know that React supported that. Unfortunately, there's no way for Aphrodite to know implicitly which frame you are trying to render to, because it isn't connected to...

@lnmunhoz Can you provide a more complete example of what you're trying to do? I seriously doubt that removing that line is the solution to your problem.

Fetching and parsing external CSS doesn't sound like a very robust system to me. I feel like most selectors in CSS files are nested selectors (i.e. `.a .b > .c`)...

Thanks for reporting this! At KA, we do a `setTimeout(function() { /* measuring in here */ }, 0);` in a couple of places to solve this exact problem, but you're...