style: remove unnecessary comments from HTML files

This commit is contained in:
Jan-Marlon Leibl 2025-05-14 12:02:27 +02:00
commit f69237a1a9
Signed by: jleibl
GPG key ID: 300B2F906DC6F1D5
5 changed files with 1 additions and 13 deletions

View file

@ -5,7 +5,7 @@
</main> </main>
<app-footer></app-footer> <app-footer></app-footer>
<!-- Auth Forms Overlay --> Auth Forms Overlay -->
@if (showLogin() || showRegister()) { @if (showLogin() || showRegister()) {
<div <div
class="fixed inset-0 bg-black/50 z-40" class="fixed inset-0 bg-black/50 z-40"

View file

@ -1,6 +1,5 @@
<div class="min-h-screen bg-deep-blue flex items-center justify-center"> <div class="min-h-screen bg-deep-blue flex items-center justify-center">
<div class="modal-card max-w-md w-full bg-deep-blue rounded-lg shadow-xl p-6 relative"> <div class="modal-card max-w-md w-full bg-deep-blue rounded-lg shadow-xl p-6 relative">
<!-- Close Button -->
<button <button
(click)="closeDialog.emit()" (click)="closeDialog.emit()"
class="absolute top-4 right-4 text-text-secondary hover:text-white transition-colors" class="absolute top-4 right-4 text-text-secondary hover:text-white transition-colors"

View file

@ -1,6 +1,5 @@
<div class="min-h-screen bg-deep-blue flex items-center justify-center"> <div class="min-h-screen bg-deep-blue flex items-center justify-center">
<div class="modal-card max-w-md w-full bg-deep-blue rounded-lg shadow-xl p-6 relative"> <div class="modal-card max-w-md w-full bg-deep-blue rounded-lg shadow-xl p-6 relative">
<!-- Close Button -->
<button <button
(click)="closeDialog.emit()" (click)="closeDialog.emit()"
class="absolute top-4 right-4 text-text-secondary hover:text-white transition-colors" class="absolute top-4 right-4 text-text-secondary hover:text-white transition-colors"

View file

@ -2,13 +2,10 @@
<h1 class="text-3xl font-bold text-white mb-6">Spielautomaten</h1> <h1 class="text-3xl font-bold text-white mb-6">Spielautomaten</h1>
<div class="grid grid-cols-1 lg:grid-cols-4 gap-6"> <div class="grid grid-cols-1 lg:grid-cols-4 gap-6">
<!-- Slot Machine Display -->
<div class="lg:col-span-3 space-y-6 flex flex-col"> <div class="lg:col-span-3 space-y-6 flex flex-col">
<div class="card"> <div class="card">
<!-- Slot Machine Top -->
<div class="p-6"> <div class="p-6">
<div class="flex items-center justify-between gap-4"> <div class="flex items-center justify-between gap-4">
<!-- Wrapper for title and win amount -->
<div class="flex items-baseline space-x-2"> <div class="flex items-baseline space-x-2">
<h2 class="text-xl font-bold text-white">Slot Machine</h2> <h2 class="text-xl font-bold text-white">Slot Machine</h2>
<span <span
@ -20,7 +17,6 @@
</span> </span>
</div> </div>
<!-- Status Badge -->
<div <div
[ngClass]="{ [ngClass]="{
'bg-emerald': slotResult().status === 'win', 'bg-emerald': slotResult().status === 'win',
@ -42,7 +38,6 @@
</div> </div>
</div> </div>
<!-- Slot Display -->
<div class="p-6"> <div class="p-6">
<div class="bg-deep-blue-light rounded-lg p-4 shadow-inner mb-6"> <div class="bg-deep-blue-light rounded-lg p-4 shadow-inner mb-6">
<div class="grid grid-cols-3 gap-3"> <div class="grid grid-cols-3 gap-3">
@ -60,9 +55,6 @@
</div> </div>
</div> </div>
<!-- Game Result (This section was removed as it's now at the top) -->
<!-- Controls -->
<div class="flex flex-col sm:flex-row gap-4 items-center justify-center"> <div class="flex flex-col sm:flex-row gap-4 items-center justify-center">
<div class="flex items-center bg-deep-blue-light rounded-lg p-2 flex-1"> <div class="flex items-center bg-deep-blue-light rounded-lg p-2 flex-1">
<label for="betAmount" class="text-text-secondary mr-3">Einsatz:</label> <label for="betAmount" class="text-text-secondary mr-3">Einsatz:</label>
@ -98,7 +90,6 @@
</div> </div>
</div> </div>
<!-- Game Info Panel -->
<div class="lg:col-span-1"> <div class="lg:col-span-1">
<div class="card p-4"> <div class="card p-4">
<h3 class="section-heading text-xl mb-4">Spiel Informationen</h3> <h3 class="section-heading text-xl mb-4">Spiel Informationen</h3>

View file

@ -182,7 +182,6 @@
</div> </div>
</div> </div>
<!-- Auth Forms Overlay -->
@if (showLogin() || showRegister()) { @if (showLogin() || showRegister()) {
<div <div
class="fixed inset-0 bg-black/50 z-40" class="fixed inset-0 bg-black/50 z-40"