Move marquee CSS from inline style to app.scss to fix CSP violation

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Serreau Jovann
2026-03-20 15:05:26 +01:00
parent 5b62a270d7
commit 7b21923fe0
2 changed files with 11 additions and 11 deletions

View File

@@ -60,3 +60,14 @@ e-ticket-editor {
pointer-events: none;
}
.ete-content ul { list-style: disc; padding-left: 1.5rem; margin: 0.5rem 0; }
/* ===== Marquee ===== */
@keyframes marquee {
0% { transform: translateX(0); }
100% { transform: translateX(-50%); }
}
.animate-marquee {
display: flex;
width: 200%;
animation: marquee 40s linear infinite;
}

View File

@@ -169,15 +169,4 @@
</div>
<style>
@keyframes marquee {
0% { transform: translateX(0); }
100% { transform: translateX(-50%); }
}
.animate-marquee {
display: flex;
width: 200%;
animation: marquee 40s linear infinite;
}
</style>
{% endblock %}