feat: widget sdk

This commit is contained in:
Tristan Yang
2022-10-27 21:21:54 +08:00
parent 23320ab637
commit 1987c257ba
25 changed files with 456 additions and 96 deletions
+16 -2
View File
@@ -1,8 +1,22 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
content: ["./src/**/*.{js,jsx,ts,tsx}", "./public/*.html"],
theme: {
extend: {}
extend: {
keyframes: {
fadeInUp: {
from: {
opacity: 0,
transform: `translate3d(0, 100%, 0)`
},
to: {
opacity: 1,
transform: `translate3d(0, 0, 0)`
}
}
}
}
},
plugins: []
};