Fritz Lekschas
Fritz Lekschas
do `npm install --save-dev node-sass`
Does `exclude` actually do anything? I've tested the example settings with `v3.1.1`: ```javascript { "plugins": [ ["react-css-modules", { "exclude": "node_modules" }] ] } ``` but imports in the form of:...
@hpeikari no because the `README.md` says the param is of type string. Does it work for you with an regex object?
That would also work but it still means that all transitions within that component run on the initial rendering right? I guess maybe a with my proposal problem is that...
In case you don't want to install mysql system-wide, you can easily create a [Conda environment](https://docs.conda.io/projects/conda/en/latest/user-guide/tasks/manage-environments.html). The following works for me: ``` name: pattern channels: - conda-forge dependencies: - python>=3.7...
I had a similar issue with another QL extension for webp and found that in my case Pixelmator interfered with it. The instructions here https://github.com/Nyx0uf/qlImageSize#limitations solved the issue for me....
@wottpal I can't say for sure but I believe you're right. The other day I noticed that I couldn't preview webp anymore and that the setting in Pixelmator's plist was...
Thanks for reporting! Did you try scrolling the background after you removed `position: fixed`? I suspect you can, which shouldn't be the case.
I can scroll the page in the page in the background just fine when the modal is opened on my iPhone (iOS 15.3). That's also the reason `position: fixed` was...
There might be a solution to the issue you described that does not require `position: fixed` to be changed. Can you test replacing ```css height: 100vh; ``` with: ```css min-height:...