gatsby-theme-ui-timeline-preset
v3.0.1
Published
A preset for theme-ui styles
Downloads
5
Maintainers
Readme
A Theme UI preset that contains the configuration used in other Gatsby themes, e.g. gatsby-theme-timeline
.
Installation
For an existing site
If you already have a site you'd like to add the theme-ui theme to, you can manually configure it.
- Install the theme
npm install gatsby-theme-ui-timeline-preset
- Add the configuration to your
gatsby-config.js
file
// gatsby-config.js
module.exports = {
plugins: [{
resolve: `gatsby-plugin-theme-ui`
options: {
preset: `gatsby-theme-ui-timeline-preset`
}}],
}