Gavin McFarland
Gavin McFarland
Hmm interesting. If you have a repo you're able to share I can investigate it and try to find a solution. Many thanks.
Thank you, this is really useful. I'll spin this up and take a look. With regards to the esbuild minifying the CSS I think this is a mistake being made...
Yes regarding the last problem. I had a little play around and it's because of the negative margin on the container and the width being applied is causing the width...
Hi @mashirozx in your particular case you can try this snippet below: ```css .flex-box { /* Only add to containers with explicit width */ --fgp-width: var(--has-fgp) calc(170px + var(--fgp-gap-column)); width:...
Ahh. Sorry my bad. I forgot the plugin looks for properties beginning with `--fgp` to tell if the polyfill has been applied or not. Just change the prefix or you...
I've released a fix for the width issue you were encountering. The problem should be resolved in version `4.1.0`. Regarding the syntax error, I believe this is an error with...
Just did some lite research and I think I've found an option to disable hopefully removing empty properties `removeEmpty: true`. More information is on the [css-clean documentation](https://github.com/clean-css/clean-css#formatting-options).
Hi @moshe-l . The polyfill requires PostCSS. I've not used Angular before but from what I've read you need to use a custom Webpack config to use PostCSS. I found...
I tried to have a go but I wasn't familiar enough with Angular. Let us know if you get it working, or if you hit a roadblock.
Hi Bart, thanks for taking the time to raise this issue. I can see the problem you're encountering and why it's happening. It should be fixable, I just need to...