talks/taking-flight-with-tailwind-css/demo/tailwind.config.js

20 lines
341 B
JavaScript
Raw Normal View History

const plugin = require("tailwindcss/plugin");
2023-02-15 07:56:04 +00:00
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [],
theme: {
extend: {},
},
plugins: [
plugin(function({ addUtilities }) {
addUtilities({
'.list-reset': {
listStyle: 'none',
padding: 0,
},
})
})
],
2023-02-15 07:56:04 +00:00
}