Hi
I'm developing a plugin for Joplin for which I need some custom css. I defined it like this:
module.exports = {
default: function (context) {
return {
plugin: plugin,
assets: function () {
return [
{ name: './todoKanban.css' }
];
}
}
}
}
CSS file is in the same directory. Unfortunately it is not being picked up. What I'm doing wrong?
Link to source code - it's very small so far. Joplin version 1.4.18 (also tried 1.5.7). Ubuntu 20.04
Also I tried "inline" style - and it does not work as well. Defining style in html element works.
Sample note that I'm using for testing:
# Test me
## Column 1
- [ ] task 11
- [ ] task 12
## Column 2
- [ ] task 21
## Column 3