@forthlaw/styles
v1.0.1
Published
### Notes Front end styling for the Forthlaw suite of Vue projects.
Downloads
2
Readme
@forthlaw/styles
Notes
Front end styling for the Forthlaw suite of Vue projects.
Example: Styles.Default
This simply returns the filepath for the scss
file that can be used to compile/required back into the Vue project. In your nuxt.config.js
:
import styles from '@forthlaw/styles'
export default {
...,
css: [
'@/static/app.css',
'@/assets/app.scss',
styles.Default,
],
}
This way, you can override the default styling, but have it as your base in any Vue project.