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://minimals.cc/components/extra/scroll */
@import './components/scrollbar/styles.css';
/* map */
/* https://minimals.cc/components/extra/map */
@import './components/map/styles.css';
/* lightbox */
/* https://minimals.cc/components/extra/lightbox */
@import './components/lightbox/styles.css';
/* chart */
/* https://minimals.cc/components/extra/chart */
@import './components/chart/styles.css';
a {
color: red;
text-decoration: none;
}
...