yy-search/tailwind.config.js

13 lines
232 B
JavaScript
Raw Normal View History

2022-10-19 07:59:50 +00:00
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./index.html", "./src/**/*.{js,vue}"],
theme: {
extend: {},
2022-10-19 09:10:54 +00:00
container: {
center: true,
padding: "2rem",
},
2022-10-19 07:59:50 +00:00
},
plugins: [],
};