Konrad Dzwinel

Results 184 comments of Konrad Dzwinel

html-sketchapp doesn't yet translate "responsiveness" of elements from HTML. It's doable, but it's a lot of work. By default we don't set any constraints on elements making them stretchable in...

most of the heavy lifting was alrady done in https://github.com/airbnb/react-sketchapp/pull/359 we need to migrate this over

Getting styles for these pseudo elements, and checking if they exist in the first place, boils down to this: `getComputedStyle(someNode, 'after').content.length > 0`. Not sure how to calculate bounding client...

As far as I understand @KimDal-hyeong idea and code, we can replace pseudoelements with "real" elements and continue business as usual. I think this is a really neat workaround 👏,...

## Status Without `getBoundingClientRect` on a pseudo-elements I don't see how we can implement it (although in devtools it's possible to select it and call `getBoundingClientRect` on it). ## Workaround...

@ryanseddon yeah, in DT it's possible through the [DevTools debugging protocol](https://chromedevtools.github.io/devtools-protocol/tot/DOM), but html-asketch currently runs in a browser context, so we don't have access to that. It's possible that we...

Your parser looks fine to me 👍 I'm just starting to wonder if we could reuse something like https://github.com/reworkcss/css , WDYT?

Support for multiple boxShadows landed in https://github.com/brainly/html-sketchapp/releases/tag/v3.3.0 !

Agreed, mask should work 👍