Files
CatsOfMastodonGo-Admin/css/style.css
Mohammad Mahdi 803687738e feat: Convert React application to HTML/CSS/JS with Alpine.js
- Migrate from React/TypeScript to vanilla HTML/CSS/JS with Alpine.js
- Implement all original functionality: authentication, media queue, OAuth flow
- Add auto-loading of media queue on dashboard access
- Enhance JWT expiration handling with proper redirects
- Improve OAuth callback page with beautiful UI and status updates
- Remove unused HTMX dependency
- Clean up old React project files
- Update README with live demo link and development instructions

Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
2025-09-25 21:45:01 +03:30

23 lines
419 B
CSS

/* Additional custom styles if needed */
[x-cloak] { display: none !important; }
/* Ensure body takes full height */
body {
margin: 0;
padding: 0;
}
/* Loading spinner animation */
.animate-spin {
animation: spin 1s linear infinite;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
/* Object fit for images */
.object-contain {
object-fit: contain;
}