How to use semantic user interface in solving semantic interface?

The traditional semantic user interface contains detailed instructions for theming , but there is no equivalent section on the Semantic UI React website. Does this mean that it does not support the topic or can you use the traditional approach to the semantic interface for the topic?

I know that some people in the React world advocate not using CSS and instead you program programmatically as part of the design of your component. What is the concept of a semantic interface?

+5
source share
1 answer

The thematic part is “missing” in the response semantic documents, but this is special.

Here is how I did it:

Install the full semantic interface package. The semantic interface includes Gulp build tools so that your project can save its own theme changes, which allows you to configure style variables.

Here you can find detailed documentation on topics in the semantic interface.

$ npm install semantic-ui --save-dev 

After creating the project with Gulp, you will need to include the mini CSS file in the index.js file:

 import '../semantic/dist/semantic.min.css'; 

via: https://react.semantic-ui.com/usage#semantic-ui-package

There are already different ui frameworks with a more “responsive” approach. IMHO, what semantic ui (react) is really the best real-time solution so far ...

+6
source

Source: https://habr.com/ru/post/1267282/


All Articles