diff --git a/luckydiamond/src/assets/css/PagesStyles/jackpot-history.css b/luckydiamond/src/assets/css/PagesStyles/jackpot-history.css new file mode 100644 index 0000000..221dc06 --- /dev/null +++ b/luckydiamond/src/assets/css/PagesStyles/jackpot-history.css @@ -0,0 +1,67 @@ +.jackpot-history__content { + display: flex; + max-height: 800px; + overflow-y: auto; + margin: 0 auto; +} + +.jackpot-history__element { + display: flex; + flex-direction: column; + flex-wrap: wrap; + margin: 15px; +} + +.abc { + +} + +.element-info { + display: flex; + align-items: center; +} + +.element-info .element-info__icon img { + height: 50px; +} + +.element-info .element-info__user-info { + margin-left: 4px; +} + +.element-info .element-info__user-info .username { + color: #515D83; + font-family: 'Montserrat'; + font-weight: 700; + font-size: 20px; +} + +.element-info .element-info__user-info .user-deposit { + font-family: 'Montserrat'; + font-weight: 700; + font-size: 20px; + +} + +.element-info .element-info__user-info .img-width img { + width: 16px; + height: 16px; +} + +.element-chance { + margin-top: 10px; +} + +.element-chance h2 { + font-family: 'Montserrat'; + font-weight: 700; + font-size: 18px; + text-align: center; + background: #27345C; + border-radius: 7px; +} + +.element-chance .chance-style { + color: #EF4444; + margin-left: 2px; +} \ No newline at end of file diff --git a/luckydiamond/src/pages/JackopthistoryPage.vue b/luckydiamond/src/pages/JackopthistoryPage.vue new file mode 100644 index 0000000..0280b99 --- /dev/null +++ b/luckydiamond/src/pages/JackopthistoryPage.vue @@ -0,0 +1,70 @@ +t + + + + + + + + + + + + + + + + + + + {{ game.winnerUserName }} + + {{ game.winStake.toFixed(2) }} + + + + + + + Шанс {{ game.winnerPercentage.toFixed(2) }}% + + + + + + + + + + + + + + \ No newline at end of file