+
User Preferencies
diff --git a/crates/frontend/tailwind.config.js b/crates/frontend/tailwind.config.js
index a6e8615..0571ef1 100644
--- a/crates/frontend/tailwind.config.js
+++ b/crates/frontend/tailwind.config.js
@@ -2,7 +2,24 @@
export default {
content: ['./index.html', './src/**/*.{vue,ts,js}'],
theme: {
- extend: {},
+ extend: {
+ keyframes: {
+ "border-spin": {
+ "100%": {
+ transform: "rotate(-360deg)",
+ }
+ },
+ "border-roll": {
+ "100%": {
+ "background-position": "200% 0",
+ }
+ }
+ },
+ animation: {
+ "border-spin": "border-spin 7s linear infinite",
+ "border-roll": "border-roll 5s linear infinite"
+ }
+ },
},
plugins: [],
}