I want to create a web client using act.js and a semantic interface. There is a package of nodes for using semantic-ui withact.js; semantic interface is responsive . I already installed this package on my computer, following the instructions at response.semantic-ui.com/usage , but after testing with a simple web page.
I think I have this problem, because I could not use this last statement: import '.../semantic/dist/semantic.min.css';, semanticfolder has been generated in the master of my project folder, but the folder distand semantic.min.cssdo not yet exist. Where and how should I use it?
NB. I also tried adding this <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.2.2/semantic.min.css"></link>to my Page index.htmland the page was styled as expected. I do not want to use this option, since I cannot change them with it.
source
share