mirror of
https://github.com/yawaflua/LuckyDiamond.git
synced 2025-12-10 04:09:29 +02:00
123123213
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
.jackpot-history__content {
|
.jackpot-history__content {
|
||||||
display: flex;
|
display: flex;
|
||||||
max-width: 80%;
|
/*max-width: 80%;*/
|
||||||
max-height: 800px;
|
max-height: 800px;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
@@ -8,11 +8,15 @@
|
|||||||
|
|
||||||
.jackpot-history__element {
|
.jackpot-history__element {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
/*flex-direction: column;*/
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
margin: 15px;
|
margin: 15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.abc {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
.element-info {
|
.element-info {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
|||||||
@@ -10,24 +10,26 @@ t<template>
|
|||||||
<div class="jackpot-history__content">
|
<div class="jackpot-history__content">
|
||||||
<ul class="jackpot-history__element">
|
<ul class="jackpot-history__element">
|
||||||
<li v-for="(game, index) in historyGame" :key="index">
|
<li v-for="(game, index) in historyGame" :key="index">
|
||||||
<div class="jackpot-history__element">
|
<div class="abc">
|
||||||
<div class="element-info">
|
<div class="jackpot-history__element">
|
||||||
<div class="element-info__icon">
|
<div class="element-info">
|
||||||
<img :src="`https://avatar.spworlds.ru/face/55/${game.winnerUserName}`">
|
<div class="element-info__icon">
|
||||||
|
<img :src="`https://avatar.spworlds.ru/face/55/${game.winnerUserName}`">
|
||||||
|
</div>
|
||||||
|
<div class="element-info__user-info">
|
||||||
|
<h2 class="username">{{ game.winnerUserName }}</h2>
|
||||||
|
<h2 class="user-deposit">
|
||||||
|
{{ game.winStake }}
|
||||||
|
<span class="img-width"><img src="@/assets/icons-profile/icon-diamond-ore.png"></span>
|
||||||
|
</h2>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="element-info__user-info">
|
<div class="element-chance">
|
||||||
<h2 class="username">{{ game.winnerUserName }}</h2>
|
<h2>
|
||||||
<h2 class="user-deposit">
|
Шанс <span class="chance-style">{{ game.winnerPercentage.toFixed(2) }}%</span>
|
||||||
{{ game.winStake }}
|
|
||||||
<span class="img-width"><img src="@/assets/icons-profile/icon-diamond-ore.png"></span>
|
|
||||||
</h2>
|
</h2>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="element-chance">
|
|
||||||
<h2>
|
|
||||||
Шанс <span class="chance-style">{{ game.winnerPercentage.toFixed(2) }}%</span>
|
|
||||||
</h2>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|||||||
Reference in New Issue
Block a user