This commit is contained in:
Kar
2022-10-03 01:06:40 +05:30
parent 5ffc7af543
commit 3a683d8f63
5 changed files with 133 additions and 245 deletions

View File

@@ -5,6 +5,20 @@ module.exports = {
content: ['./index.html', './src/**/*.{vue,js,ts}'],
theme: {
extend: {
animation: {
marquee: 'marquee 50s linear infinite',
marquee2: 'marquee2 25s linear infinite',
},
keyframes: {
marquee: {
'0%': { transform: 'translateX(0%)' },
'100%': { transform: 'translateX(-40%)' },
},
marquee2: {
'0%': { transform: 'translateX(100%)' },
'100%': { transform: 'translateX(0%)' },
},
},
fontFamily: {
sans: ['"Inter var"', ...defaultTheme.fontFamily.sans],
},