semantic-ui meteor not working.
Hi everyone,
I did follow the step on the installation guide, and I have no css displaying.
Do I have to import any css code in my app?
And btw, I also have the warning
"app/client/semantic-ui/semantic.less.css: warn: There are some @import rules those are not taking effect as they are required to be in the beginning of the file." when meteor is refreshing.
What can I do?
Did I miss something?
Nope, I believe as long as you ensure custom.semantic.json is in a /client folder relative to your meteor folder you should be good. My setup is done exactly as recommended (with custom.semantic.json located in /client/lib/semantic-ui).
Warning is already documented in #132.
I had similar problem until I realised that I need to add specific component definitions to custome.semantic.json like this for button if I want to see buttons styled:
"definitions": {
"site": true,
"button": true
},
I would be great adding that explicit step to instructions. I could not find this anywhere. The only thing I found was:
Edit the file custom.semantic.json to select only the definitions and themes you want Example: set themes basic to true, leave default as true
And example is missing the point of adding component like button e.g.