style(slots): clean up unused button styling
This commit is contained in:
parent
98668a3fb0
commit
4d76655e2f
2 changed files with 1 additions and 14 deletions
|
@ -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);
|
||||||
|
|
|
@ -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()"
|
||||||
|
|
Reference in a new issue