mirror of
https://github.com/gabehf/Prittee.git
synced 2026-03-09 07:28:19 -07:00
16 lines
326 B
JavaScript
16 lines
326 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ["./src/**/*.{js,jsx,ts,tsx}"],
|
|
theme: {
|
|
extend: {
|
|
backgroundSize: {
|
|
'size-200': '200% 200%',
|
|
},
|
|
backgroundPosition: {
|
|
'pos-0': '0% 0%',
|
|
'pos-100': '100% 100%',
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|