Buy nowGet update
  • getting started
    • Introduction
    • Quick start
    • Mock server
    • Deployment
    • Package & license
    • Setup
    • Figma
  • theme UI
    • Colors
    • Typography
    • IconsNEW
    • Shadows
    • Css vars
    • Logo
    • Layout
    • Navigation
    • Settings
  • Global
    • Styles
    • Config
    • Components overrides
  • development
    • Routing
    • Subfolder
    • Authentication
    • Environment variables
    • Api calls
    • Multi language
    • Structure
    • Clean project
    • Dependencies
    • Tailwind
    • Migrate to CRA
    • Credit assets
  • support
    • 🔵 Update
    • 🔴 Faqs & support
    • 🟣 Changelogv7.4.0
© All rights reserved.ContactHome

Global styles

For case you are using the starter version and want to add some components from the full version, you need to add the corresponding styles to src/global.css.


Setup

When installing components like chart or lightbox...

Don't forget to add the corresponding styles to src/global.css.

Or you can define additional html tags.

src/global.css
/* scrollbar */
/* https://minimals.cc/components/extra/scroll*/
/* src/components/scrollbar */
@import './components/scrollbar/styles.css';
 
/* map */
/* https://minimals.cc/components/extra/map*/
/* src/components/map */
@import './components/map/styles.css';
 
/* lightbox */
/* https://minimals.cc/components/extra/lightbox*/
/* src/components/lightbox */
@import './components/lightbox/styles.css';
 
/* chart */
/* https://minimals.cc/components/extra/chart*/
/* src/components/chart */
@import './components/chart/styles.css';
 
a {
  color: red;
  text-decoration: none;
}
...