Enhance game list view to group games by organization and improve performance with optimized queries

This commit is contained in:
Joakim Hellsén 2025-07-10 04:31:28 +02:00
commit 250aaac2a0
3 changed files with 204 additions and 77 deletions

View file

@ -50,6 +50,19 @@
max-width: 120px;
max-height: 120px;
}
.hover-effect {
transition: all 0.3s ease;
}
.hover-effect:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}
.card-header h3 {
font-size: 1.5rem;
}
</style>
{% block extra_css %}{% endblock %}
</head>