Yuan Chuan
Yuan Chuan
Sometimes I thought I'm the only one who is still using this project! I've just figured out a way to separate the component from `index.js`. See https://github.com/css-doodle/css-doodle/pull/124 By default the...
5 years later.. Since `0.37.0`, the new symbol `$` is added for reading numeric variables. ```css --t: calc(3/2); --tt: calc(@ceil(var(--t))*4); #Problem here! margin: calc(.1em * var(--tt)); ``` Can be written...
Putting the same `autoimport()` function in `preprocess` of `svelte.config.js` will fix the warnings: ```js /* svelte.config.js */ import autoImport from 'sveltekit-autoimport'; export default { preprocess: [ autoImport({ components: [ './src/components',...
@stolinski That's strange, maybe it was the situation when the syntax plugin in the editor didn't work when I switched configurations using VSCode, I took it as it being able...
Good point!
Currently no. The [@shaders()]( https://css-doodle.com/#function-@shaders) can be used to make fractals, although it may require a lot of code. I did have a plan to build a new function that...
👍👍 多谢提及 P.S. 不记得自己为什么以前要这样写: ```css @size: calc(100% - @calc(@index() - 1) * 1%); ``` 其实这样就行 ```css @size: calc(100% - (@index - 1) * 1%); ``` 或者 ```css @size: calc(100% -...
Type issue. Use number or transform them from the `data` object. ```js item.year)} /> ``` https://github.com/Wolfr/sveltekit-jui/blob/main/src/lib/jui-components/BarChart.svelte#L61
Yes :)
Hi @maksis, sorry for the delay in reply. How about adding an error handler? ```js const watcher = watch('...'); watcher.on('error', () => { // retry watch }); ```