feat: implemented a basic store and emulatorjs
This commit is contained in:
parent
2f32cbc730
commit
7286541822
121 changed files with 5900 additions and 1092 deletions
|
|
@ -1,5 +1,17 @@
|
|||
const plugin = require('tailwindcss/plugin')
|
||||
|
||||
/** @type {import('tailwindcss').Config} */
|
||||
export default {
|
||||
content: ["./src/mainview/**/*.{html,js,ts,jsx,tsx}"],
|
||||
plugins: ["tailwindcss-animate"],
|
||||
plugins: ["tailwindcss-animate",
|
||||
plugin(function ({ matchUtilities, theme }) {
|
||||
matchUtilities(
|
||||
{
|
||||
'animate-delay': (value) => ({
|
||||
animationDelay: value,
|
||||
}),
|
||||
},
|
||||
{ values: theme('transitionDelay') },
|
||||
)
|
||||
})],
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue