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

Global styles


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://zone-ui.vercel.app/components/scroll/*/
/* src/components/scrollbar */
@import './components/scrollbar/styles.css';
 
/* lightbox */
/* https://zone-ui.vercel.app/components/lightbox/*/
/* src/components/lightbox */
@import './components/lightbox/styles.css';
 
a {
  color: red;
  text-decoration: none;
}
...