Discover: sidebar-insight component done

This commit is contained in:
chiayin
2023-03-15 16:08:27 +08:00
parent 807218141e
commit a4e0e300ea
4 changed files with 284 additions and 235 deletions

View File

@@ -46,6 +46,18 @@ module.exports = {
// 'lg': '1024px',
// 'xl': '1280px',
'2xl': '1536px',
}
},
extend: {
keyframes: {
'fadein': {
'0%': { opacity: '0' },
'50%': { opacity: '0.5' },
'100%': { opacity: '1' },
},
},
animation: {
'fadein': 'fadein 1s ease-in-out',
},
},
},
};