I’m hoping one of the developers can help point me in the right direction.
I’m trying to create a theme, and I started by downloading the litely.scss
and _variables.litely.scss
files from the github repo. I renamed the files and made some changes, and then used https://bootstrap.build to generate a css
file. I dropped that file (along with my scss
files) into the extra_themes
directory on my server.
Sure enough, my new theme was available in the list of available themes. However, when I applied the theme, I found that the layout was broken (see screenshot).
So, my question is: how can I generate the css
file in the proper manner so as not to break the layout? Is there a specific Bootstrap tool that we should be using to generate the css
? Are there additional input files that need to be included in order to generate the correct css
?
Thanks for any help you can provide!
I’ve installed dart-sass (instructions here) on my machine, and then ran the compiler on my
scss
file. I get the following errorError: Can't find stylesheet to import. ╷ 1 │ @import "./variables"; │ ^^^^^^^^^^^^^ ╵ _variables.tk.scss 1:9 @import tk.scss 1:9 root stylesheet
Where can I find the
_variables.scss
file that it’s looking for?