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 scrollbar
or lightbox
...
Don't forget to add the corresponding styles to src/global.css
.
Or you can define additional html tags.
/* scrollbar */
@import './components/scrollbar/styles.css';
/* lightbox */
@import './components/lightbox/styles.css';
a {
color: red;
text-decoration: none;
}
...