Zhaolin Liang
Zhaolin Liang
> Thanks for the PR on my problem, just one question, does the change above also fix the application of a color to the VChip with the theme as with...
Had same error. The reason is that after building, the default export of `CJS` was replaced. https://github.com/unocss/unocss/pull/3380/files#diff-21462feba05a79008c54d9a3267569b27b8897540ac86e47110e57f25402d224R11 But `Next.js` plugins must be provided as strings. https://nextjs.org/docs/messages/postcss-shape You can roll back...
Sass, Less, Stylus, and other preprocessors run separately before UnoCSS. This means that you cannot input the output of the `theme()` function into Sass color functions, as `theme()` is only...
This seems to cause bug [#39880](https://github.com/ant-design/ant-design/issues/39880) to be reopened.
You need to add the following styles ```css textarea { -ms-overflow-style: none; scrollbar-width: none; } textarea::-webkit-scrollbar { display: none; } ``` https://vueuse.org/core/useTextareaAutosize/#usage
> I don’t think the condition is correct now, it should depend on group by, see the original fix for vuetify2 #13027 Thank you for the reminder. You are right....
Sorry, the first time I submitted the unit test it passed successfully, but after updating the code, it surprisingly failed the test. The reason is that I used the same...
> `git rebase --onto upstream/feat/v-file-upload HEAD~` and force push Thank you very much.