feat(ui): CSS Animations #18 (#27)

Added css animations on reload

Co-authored-by: LQ63 <lkhermann@web.de>
Reviewed-on: #27
Reviewed-by: Janis <janis-e@gmx.de>
Co-authored-by: lq64 <lq@blackhole.local>
Co-committed-by: lq64 <lq@blackhole.local>
This commit is contained in:
2025-10-30 08:03:00 +01:00
committed by Janis
parent 1f377de0f4
commit c0dadf8927
2 changed files with 29 additions and 5 deletions

View File

@@ -3,9 +3,9 @@
@main("Sessions") {
<div id="sessions">
<h1>Knockout Whist sessions</h1>
<p>Please select your session to jump inside the game!</p>
<p id="textanimation">Please select your session to jump inside the game!</p>
@for(session <- sessions) {
<a href="@routes.HomeController.ingame(session.id.toString)">@session.name</a><br>
<a id="textanimation" href="@routes.HomeController.ingame(session.id.toString)">@session.name</a><br>
}
</div>
}