Add: Added New Styling For AuthModel

New Border effect that rolls around the border of the registration.
Use of CSS extension that goes with TailwindCdd
This commit is contained in:
EvanLin3141
2025-01-28 22:31:31 +00:00
parent 01d7be2d4b
commit 252ca7d1e6
7 changed files with 263 additions and 36 deletions

View File

@@ -1,3 +1,5 @@
import { transform } from 'typescript';
/** @type {import('tailwindcss').Config} */
export default {
content: [
@@ -6,13 +8,14 @@ export default {
],
theme: {
extend: {
animation: {
moving_text_colour: "moving_text_colour 6s ease-in-out infinite alternate",
moving_bg: 'moving_bg 200s linear infinite'
moving_bg: 'moving_bg 200s linear infinite',
'border-spin': 'border-spin 7s linear infinite',
},
backgroundImage: {
logo: "linear-gradient(45deg, #60A5FA, #8B5CF6, #EC4899, #FACC15,#60A5FA, #8B5CF6, #EC4899, #FACC15)",
},
@@ -21,14 +24,20 @@ export default {
moving_text_colour: {
"0%": { backgroundPosition: "0% 50%" },
"100%": { backgroundPosition: "100% 50%" },
moving_bg: {
'0%': { backgroundPosition: '0% 0%' },
'100%': { backgroundPosition: '100% 0%' },
}
},
moving_bg: {
'0%': { backgroundPosition: '0% 0%' },
'100%': { backgroundPosition: '100% 0%' }
}
}
'border-spin': {
'100%': {
transform: 'rotate(360deg)',
},
},
},
},
},
plugins: [
],
plugins: [
],
}
};