site: fix modals

This commit is contained in:
Harvey Tindall 2022-12-29 20:31:29 +00:00
parent 6efd28d904
commit 6bab805528
Signed by: hrfee
GPG Key ID: BBC65952848FB1A2
1 changed files with 22 additions and 0 deletions

View File

@ -6,6 +6,28 @@ module.exports = {
darkMode: 'class',
theme: {
extend: {
keyframes: {
'fade-in': {
'0%': {
opacity: '0'
},
'100%': {
opacity: '1'
}
},
'fade-out': {
'0%': {
opacity: '1'
},
'100%': {
opacity: '0'
}
},
},
animation: {
'fade-in': 'fade-in 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94)',
'fade-out': 'fade-out 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94)'
},
colors: {
neutral: colors.slate,
positive: colors.green,