feat: update ui and add compose dialog

This commit is contained in:
reya
2024-07-29 14:49:13 +07:00
parent a65d5d0c1a
commit 6ceac40394
16 changed files with 913 additions and 345 deletions

View File

@@ -2,7 +2,22 @@
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {},
extend: {
keyframes: {
overlay: {
from: { opacity: '0' },
to: { opacity: '1' },
},
content: {
from: { opacity: '0', transform: 'translate(-50%, -48%) scale(0.96)' },
to: { opacity: '1', transform: 'translate(-50%, -50%) scale(1)' },
},
},
animation: {
overlay: 'overlay 150ms cubic-bezier(0.16, 1, 0.3, 1)',
content: 'content 150ms cubic-bezier(0.16, 1, 0.3, 1)',
},
},
},
plugins: [],
};