sub rgb name and stripe fix
This commit is contained in:
parent
1694a21b9f
commit
a633e3b297
@ -151,3 +151,21 @@ button {
|
|||||||
border-color: @green;
|
border-color: @green;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@keyframes rgb {
|
||||||
|
0% {
|
||||||
|
color: @red;
|
||||||
|
}
|
||||||
|
25% {
|
||||||
|
color: @white;
|
||||||
|
}
|
||||||
|
50% {
|
||||||
|
color: @blue;
|
||||||
|
}
|
||||||
|
75% {
|
||||||
|
color: @white;
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
color: @green;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
@ -51,6 +51,11 @@
|
|||||||
color: @yellow;
|
color: @yellow;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.name.subscriber {
|
||||||
|
animation: rgb 4s cubic-bezier(0.5, 0, 0.5, 1) 0s infinite alternate;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.chat {
|
.chat {
|
||||||
|
|||||||
@ -105,7 +105,7 @@ function AccountBox(args) {
|
|||||||
<div class='player-box bottom'>
|
<div class='player-box bottom'>
|
||||||
<div class="msg"> </div>
|
<div class="msg"> </div>
|
||||||
<StateAccountAvatar />
|
<StateAccountAvatar />
|
||||||
<div class="name">{account.name}</div>
|
<div class="name subscriber">{account.name}</div>
|
||||||
<div class="score"> </div>
|
<div class="score"> </div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|||||||
@ -48,7 +48,7 @@ function Shop(args) {
|
|||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<h1 class="credits">¤ {account.balance}</h1>
|
<h1 class="credits">¤ {account.balance}</h1>
|
||||||
{window.stripe
|
{window.Stripe
|
||||||
? <Elements>
|
? <Elements>
|
||||||
<StripeBtns account={account} />
|
<StripeBtns account={account} />
|
||||||
</Elements>
|
</Elements>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user