This section of the docs is evolving rapidly. Please consider visiting us on Discord or the Forums if you want to get involved in PieDAO development.
All PieDAO NPM packages are publishing on npmjs.com under the @pie-dao
prefix. You can view the most current ones here.
This package provides the tailwindcss plugin used by the PieDAO frontend-template repo. Including it in your tailwindcss configuration will give you all of the base styles and classes discussed later on in the styling section.
​Read more at Github.​
yarn add @pie-dao/tailwind
/* tailwind.config.js */
const piedao = require('@pie-dao/tailwind');
module.exports = {
theme: {},
variants: {},
plugins: [piedao],
}
​