style(slots): clean up unused button styling

This commit is contained in:
Jan-Marlon Leibl 2025-05-07 17:34:22 +02:00
commit 4d76655e2f
Signed by: jleibl
GPG key ID: 300B2F906DC6F1D5
2 changed files with 1 additions and 14 deletions

View file

@ -1,15 +1,3 @@
/* Open button styling - Matches lootbox component style */
.open-btn {
background: linear-gradient(90deg, #4338ca 0%, #8b5cf6 100%);
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
transition: all 0.2s ease;
}
.open-btn:hover {
background: linear-gradient(90deg, #4f46e5 0%, #a78bfa 100%);
transform: translateY(-2px);
box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
}
/* Symbol colors */ /* Symbol colors */
.symbol-BAR { .symbol-BAR {
color: var(--color-accent-yellow); color: var(--color-accent-yellow);

View file

@ -74,9 +74,8 @@
<button <button
(click)="spin()" (click)="spin()"
class="px-4 py-1.5 font-bold rounded" class="button-primary px-4 py-1.5 font-bold"
[ngClass]="{ [ngClass]="{
'open-btn': hasEnoughBalance(),
'bg-gray-500 cursor-not-allowed': !hasEnoughBalance(), 'bg-gray-500 cursor-not-allowed': !hasEnoughBalance(),
}" }"
[disabled]="isSpinning || !hasEnoughBalance()" [disabled]="isSpinning || !hasEnoughBalance()"