How do I import CSS to my UI.HTML file? I’ve been trying forever but unfortunately with no luck.
ui.css is linked in my project folder, not under any folders.
Here’s what I currently have in my ui.html file:
<linkrel="stylesheet"href="ui.css">
Any help is appreciated. Thank you so much!! <3
When I try the same code in the browser, it links and the elements change but, when I open my Figma Plugin’s UI window, there’s no luck.
Best answer by Gleb
The plugin only loads what’s listed in the manifest.json, ignoring all other files. Since it only allows you to specify HTML for UI and JS for backend, you have three options here:
Write CSS and JS inside of the HTML file so you don’t have to load them from other files.
Host and load CSS and JS from the web. Not every hosting would work due to CORS and the plugin having origin set to null. This isn’t a very common way I think.
Use a bundler to inline all files you want into HTML. This is good for larger plugins where writing CSS and JS directly inside of the HTML file would be difficult. You can use Rollup, Webpack, esbuild and anything else you like.
The plugin only loads what’s listed in the manifest.json, ignoring all other files. Since it only allows you to specify HTML for UI and JS for backend, you have three options here:
Write CSS and JS inside of the HTML file so you don’t have to load them from other files.
Host and load CSS and JS from the web. Not every hosting would work due to CORS and the plugin having origin set to null. This isn’t a very common way I think.
Use a bundler to inline all files you want into HTML. This is good for larger plugins where writing CSS and JS directly inside of the HTML file would be difficult. You can use Rollup, Webpack, esbuild and anything else you like.
Does it work for you guys? I tried to put the CSS code inside the HTML file as inline CSS, but only tag-targeting stylings work (e.g. a, html, body, etc.). All class-based stylings (e.g. .text-center, .justify-start, etc.) are not working at all.
As shown above, with webpack, the html-inline-script-webpack plugin works well even though it doesn't seem to be maintained. I've used it and it does the job.
We use 3 different kinds of cookies. You can choose which cookies you want to accept. We need basic cookies to make this site work, therefore these are the minimum you can select. Learn more about our cookies.