Kristóf Poduszló

Results 122 comments of Kristóf Poduszló

Does the snippet used [on CSS Tricks](https://css-tricks.com/css-fix-for-100vh-in-mobile-webkit/) solve the issue? ```css body { min-height: 100vh; min-height: -webkit-fill-available; } html { height: -webkit-fill-available; } ```

Thanks for the quick feedback! I’ll resort to a media query solution for now, then…

@simevidas I've just reported this bug towards Firefox for Android developers. Could you please comment about the Android device and Fenix version you're using over there?

@simevidas the report is available [right here](https://github.com/mozilla-mobile/fenix/issues/13870).

> Cross-referencing [w3c/csswg-drafts#4329](https://github.com/w3c/csswg-drafts/issues/4329) in regards to [#70 (comment)](https://github.com/jensimmons/cssremedy/issues/70#issuecomment-629651697). > > Edit: > Per https://twitter.com/bfgeek/status/1262459015155441664, to cater for Chromium aligning on Firefox's behaviour, add the declarations to both `html` and `body`:...

Now there is a [PostCSS plugin](https://github.com/postcss/postcss-100vh-fix) written for the purpose, which avoids applying the fix in Chrome. @jensimmons I hope you are on the path of recovery from COVID-19 and...

For auto-importing the `useStyling` hook, the implementation in https://github.com/emotion-js/emotion/pull/200 can be utilized. After that, every component with an element using the `sx` prop should start with: ```js const sx =...

@tatchi Thank you for trying! I’ve also never written a Babel plugin before, but [this explanation](https://www.youtube.com/watch?v=UeVq_U5obnE) and [the preset for emotion’s css prop](https://github.com/emotion-js/emotion/tree/master/packages/babel-preset-css-prop) may help us through the journey. Let...

Now only the documentation and [type definitions](https://github.com/kripod/glaze/pull/16#issuecomment-616528041) are left. I'm doing both right now 😊

Hello, Thank you for asking! While glaze is an ambitious project, it isn't quite there yet. I'm working on a new atomic CSS-in-JS runtime which will possibly be released by...