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.
/* 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;
}
...