@everymatrix/bonus-elevate-powerups 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bonus-elevate-powerups/app-globals-0f993ce5.js +1 -0
- package/dist/bonus-elevate-powerups/bonus-elevate-powerups-550b383c.js +1 -0
- package/dist/bonus-elevate-powerups/bonus-elevate-powerups.esm.js +1 -0
- package/dist/bonus-elevate-powerups/bonus-elevate-powerups_5.entry.js +9 -0
- package/dist/bonus-elevate-powerups/index-c7067e6d.js +2 -0
- package/dist/bonus-elevate-powerups/index.esm.js +1 -0
- package/dist/cjs/app-globals-3a1e7e63.js +5 -0
- package/dist/cjs/bonus-elevate-powerups-5d4f1cfd.js +399 -0
- package/dist/cjs/bonus-elevate-powerups.cjs.js +25 -0
- package/dist/cjs/bonus-elevate-powerups_5.cjs.entry.js +6182 -0
- package/dist/cjs/index-3dbb4007.js +1316 -0
- package/dist/cjs/index.cjs.js +10 -0
- package/dist/cjs/loader.cjs.js +15 -0
- package/dist/collection/assets/clear-search.svg +9 -0
- package/dist/collection/assets/left-arrow.svg +3 -0
- package/dist/collection/collection-manifest.json +32 -0
- package/dist/collection/components/bonus-elevate-powerups/bonus-elevate-powerups.css +224 -0
- package/dist/collection/components/bonus-elevate-powerups/bonus-elevate-powerups.js +388 -0
- package/dist/collection/components/bonus-elevate-powerups/index.js +1 -0
- package/dist/collection/components/time-count/time-count.js +86 -0
- package/dist/collection/index.js +1 -0
- package/dist/collection/utils/locale.utils.js +43 -0
- package/dist/collection/utils/utils.js +10 -0
- package/dist/esm/app-globals-0f993ce5.js +3 -0
- package/dist/esm/bonus-elevate-powerups-550b383c.js +397 -0
- package/dist/esm/bonus-elevate-powerups.js +20 -0
- package/dist/esm/bonus-elevate-powerups_5.entry.js +6174 -0
- package/dist/esm/index-c7067e6d.js +1287 -0
- package/dist/esm/index.js +2 -0
- package/dist/esm/loader.js +11 -0
- package/dist/index.cjs.js +1 -0
- package/dist/index.js +1 -0
- package/dist/stencil.config.dev.js +20 -0
- package/dist/stencil.config.js +20 -0
- package/dist/storybook/main.js +43 -0
- package/dist/storybook/preview.js +9 -0
- package/dist/types/builds/emfe-widgets/widgets-monorepo/packages/stencil/bonus-elevate-powerups/.stencil/libs/common/src/storybook/storybook-utils.d.ts +39 -0
- package/dist/types/builds/emfe-widgets/widgets-monorepo/packages/stencil/bonus-elevate-powerups/.stencil/libs/common/src/types/casino/powerups.d.ts +57 -0
- package/dist/types/builds/emfe-widgets/widgets-monorepo/packages/stencil/bonus-elevate-powerups/.stencil/packages/stencil/bonus-elevate-powerups/stencil.config.d.ts +2 -0
- package/dist/types/builds/emfe-widgets/widgets-monorepo/packages/stencil/bonus-elevate-powerups/.stencil/packages/stencil/bonus-elevate-powerups/stencil.config.dev.d.ts +2 -0
- package/dist/types/builds/emfe-widgets/widgets-monorepo/packages/stencil/bonus-elevate-powerups/.stencil/packages/stencil/bonus-elevate-powerups/storybook/main.d.ts +3 -0
- package/dist/types/builds/emfe-widgets/widgets-monorepo/packages/stencil/bonus-elevate-powerups/.stencil/packages/stencil/bonus-elevate-powerups/storybook/preview.d.ts +70 -0
- package/dist/types/builds/emfe-widgets/widgets-monorepo/packages/stencil/bonus-elevate-powerups/.stencil/tools/plugins/index.d.ts +4 -0
- package/dist/types/builds/emfe-widgets/widgets-monorepo/packages/stencil/bonus-elevate-powerups/.stencil/tools/plugins/lazy-load-chunk-plugin.d.ts +12 -0
- package/dist/types/builds/emfe-widgets/widgets-monorepo/packages/stencil/bonus-elevate-powerups/.stencil/tools/plugins/stencil-clean-deps-plugin.d.ts +5 -0
- package/dist/types/builds/emfe-widgets/widgets-monorepo/packages/stencil/bonus-elevate-powerups/.stencil/tools/plugins/vite-chunk-plugin.d.ts +6 -0
- package/dist/types/builds/emfe-widgets/widgets-monorepo/packages/stencil/bonus-elevate-powerups/.stencil/tools/plugins/vite-clean-deps-plugin.d.ts +4 -0
- package/dist/types/components/bonus-elevate-powerups/bonus-elevate-powerups.d.ts +36 -0
- package/dist/types/components/bonus-elevate-powerups/index.d.ts +1 -0
- package/dist/types/components/time-count/time-count.d.ts +10 -0
- package/dist/types/components.d.ts +66 -0
- package/dist/types/index.d.ts +1 -0
- package/dist/types/stencil-public-runtime.d.ts +1674 -0
- package/dist/types/utils/locale.utils.d.ts +2 -0
- package/dist/types/utils/utils.d.ts +9 -0
- package/loader/cdn.js +1 -0
- package/loader/index.cjs.js +1 -0
- package/loader/index.d.ts +24 -0
- package/loader/index.es2017.js +1 -0
- package/loader/index.js +2 -0
- package/loader/package.json +11 -0
- package/package.json +27 -0
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
const bonusElevatePowerups = require('./bonus-elevate-powerups-5d4f1cfd.js');
|
|
6
|
+
require('./index-3dbb4007.js');
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
exports.BonusElevatePowerups = bonusElevatePowerups.BonusElevatePowerups;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
const index = require('./index-3dbb4007.js');
|
|
6
|
+
const appGlobals = require('./app-globals-3a1e7e63.js');
|
|
7
|
+
|
|
8
|
+
const defineCustomElements = async (win, options) => {
|
|
9
|
+
if (typeof window === 'undefined') return undefined;
|
|
10
|
+
await appGlobals.globalScripts();
|
|
11
|
+
return index.bootstrapLazy([["bonus-elevate-powerups_5.cjs",[[1,"bonus-elevate-powerups",{"mbSource":[513,"mb-source"],"clientStyling":[513,"client-styling"],"clientStylingUrl":[513,"client-styling-url"],"language":[513],"endpoint":[513],"session":[513],"pageSize":[514,"page-size"],"isLoading":[32],"powerups":[32],"offset":[32],"limit":[32],"total":[32]},[[8,"reloadPageByType","onReloadPageByType"]],{"offset":["loadData"],"limit":["loadData"],"language":["loadData"],"session":["loadData","handleDataConfigChange"],"endpoint":["loadData","handleDataConfigChange"],"clientStyling":["handleClientStylingChange"],"clientStylingUrl":["handleClientStylingUrlChange"],"mbSource":["handleMbSourceChange"]}],[0,"ui-image",{"src":[1],"width":[1],"height":[1],"alt":[1],"styles":[8],"detectDistance":[1,"detect-distance"],"imgLoaded":[32],"shouldLoad":[32]},null,{"src":["handleSrc"]}],[0,"bonus-pagination-nav",{"total":[1538],"limit":[1538],"offset":[1538],"tableId":[1537,"table-id"],"language":[1537],"translationUrl":[513,"translation-url"],"arrowsActive":[1540,"arrows-active"],"secondaryArrowsActive":[1540,"secondary-arrows-active"],"displayPageNumbers":[1540,"display-page-numbers"],"displayRangeOfTotal":[1540,"display-range-of-total"],"navItemAccount":[1538,"nav-item-account"],"endPageIndex":[32],"pagesArray":[32],"currentPage":[32],"showAsEllipsisMid":[32]},[[8,"paginationReset","pageLimitChangedHandler"],[8,"pageLimitChanged","pageLimitChangedHandler"]]],[0,"time-count",{"expireTime":[1,"expire-time"],"displayTime":[32]},null,{"expireTime":["startTimeChanged"]}],[0,"ui-skeleton",{"structure":[1],"width":[1],"height":[1],"borderRadius":[8,"border-radius"],"marginBottom":[8,"margin-bottom"],"marginTop":[8,"margin-top"],"marginLeft":[8,"margin-left"],"marginRight":[8,"margin-right"],"animation":[4],"rows":[2],"size":[1]},null,{"structure":["handleStructureChange"]}]]]], options);
|
|
12
|
+
};
|
|
13
|
+
|
|
14
|
+
exports.setNonce = index.setNonce;
|
|
15
|
+
exports.defineCustomElements = defineCustomElements;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
<svg width="52" height="52" viewBox="0 0 52 52" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
2
|
+
<rect width="52" height="52" fill="url(#pattern0_1132_30534)"/>
|
|
3
|
+
<defs>
|
|
4
|
+
<pattern id="pattern0_1132_30534" patternContentUnits="objectBoundingBox" width="1" height="1">
|
|
5
|
+
<use xlink:href="#image0_1132_30534" transform="scale(0.01)"/>
|
|
6
|
+
</pattern>
|
|
7
|
+
<image id="image0_1132_30534" width="100" height="100" preserveAspectRatio="none" xlink:href="data:image/png;base64,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"/>
|
|
8
|
+
</defs>
|
|
9
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.25592 0.244078C7.58136 0.569515 7.58136 1.09715 7.25592 1.42259L2.84518 5.83333H12.5C12.9602 5.83333 13.3333 6.20643 13.3333 6.66667C13.3333 7.1269 12.9602 7.5 12.5 7.5H2.84518L7.25592 11.9107C7.58136 12.2362 7.58136 12.7638 7.25592 13.0893C6.93049 13.4147 6.40285 13.4147 6.07741 13.0893L0.244078 7.25592C-0.0813592 6.93049 -0.0813592 6.40285 0.244078 6.07741L6.07741 0.244078C6.40285 -0.0813592 6.93049 -0.0813592 7.25592 0.244078Z" fill="white"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
{
|
|
2
|
+
"entries": [
|
|
3
|
+
"components/bonus-elevate-powerups/bonus-elevate-powerups.js",
|
|
4
|
+
"components/time-count/time-count.js"
|
|
5
|
+
],
|
|
6
|
+
"compiler": {
|
|
7
|
+
"name": "@stencil/core",
|
|
8
|
+
"version": "4.19.2",
|
|
9
|
+
"typescriptVersion": "5.4.5"
|
|
10
|
+
},
|
|
11
|
+
"collections": [
|
|
12
|
+
{
|
|
13
|
+
"name": "@everymatrix/bonus-pagination-nav",
|
|
14
|
+
"tags": [
|
|
15
|
+
"bonus-pagination-nav"
|
|
16
|
+
]
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"name": "@everymatrix/ui-image",
|
|
20
|
+
"tags": [
|
|
21
|
+
"ui-image"
|
|
22
|
+
]
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"name": "@everymatrix/ui-skeleton",
|
|
26
|
+
"tags": [
|
|
27
|
+
"ui-skeleton"
|
|
28
|
+
]
|
|
29
|
+
}
|
|
30
|
+
],
|
|
31
|
+
"bundles": []
|
|
32
|
+
}
|
|
@@ -0,0 +1,224 @@
|
|
|
1
|
+
:host {
|
|
2
|
+
display: block;
|
|
3
|
+
font-family: inherit;
|
|
4
|
+
--game-amount-line: 4;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
@media screen and (max-width: 768px) {
|
|
8
|
+
.PowerUpsContainer .PowerUps .Card .GamesContent .GamesList .Games .Game {
|
|
9
|
+
width: 32%;
|
|
10
|
+
}
|
|
11
|
+
.PowerUpsContainer .PowerUps .PowerUpItem.Card .CardLeft, .PowerUpsContainer .PowerUps .PowerUpItem.Card .CardRight {
|
|
12
|
+
padding: 8px;
|
|
13
|
+
}
|
|
14
|
+
.PowerUpsContainer .PowerUps .PowerUpItem.Card .CardRight {
|
|
15
|
+
margin: 8px;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
@media screen and (max-width: 470px) {
|
|
19
|
+
.PowerUpsContainer .PowerUps .Card .GamesContent .GamesList .Games .Game {
|
|
20
|
+
width: 45%;
|
|
21
|
+
}
|
|
22
|
+
.PowerUpsContainer .PowerUps .PowerUpItem.Card {
|
|
23
|
+
max-height: 600px;
|
|
24
|
+
height: fit-content;
|
|
25
|
+
flex-direction: column;
|
|
26
|
+
}
|
|
27
|
+
.PowerUpsContainer .PowerUps .PowerUpItem.Card .CardLeft {
|
|
28
|
+
gap: 10px;
|
|
29
|
+
}
|
|
30
|
+
.PowerUpsContainer .PowerUps .PowerUpItem.Card .CardRight {
|
|
31
|
+
height: 51%;
|
|
32
|
+
overflow: auto;
|
|
33
|
+
}
|
|
34
|
+
.PowerUpsContainer .PowerUps .PowerUpItem.Card .CardLeft, .PowerUpsContainer .PowerUps .PowerUpItem.Card .CardRight {
|
|
35
|
+
width: auto;
|
|
36
|
+
margin: auto;
|
|
37
|
+
}
|
|
38
|
+
.PowerUpsContainer .PowerUps .PowerUpItem.Card .CardLeft .Game, .PowerUpsContainer .PowerUps .PowerUpItem.Card .CardRight .Game {
|
|
39
|
+
width: 45%;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
.PowerUpsContainer {
|
|
43
|
+
font-size: 0.95rem;
|
|
44
|
+
display: flex;
|
|
45
|
+
flex-direction: column;
|
|
46
|
+
min-height: 300px;
|
|
47
|
+
}
|
|
48
|
+
.PowerUpsContainer .EmptyPowerups {
|
|
49
|
+
align-items: center;
|
|
50
|
+
justify-content: center;
|
|
51
|
+
font-weight: 400;
|
|
52
|
+
font-size: 1.2em;
|
|
53
|
+
line-height: 24px;
|
|
54
|
+
text-align: center;
|
|
55
|
+
vertical-align: middle;
|
|
56
|
+
width: max-content;
|
|
57
|
+
margin: auto;
|
|
58
|
+
display: flex;
|
|
59
|
+
flex-direction: column;
|
|
60
|
+
padding: 50px;
|
|
61
|
+
}
|
|
62
|
+
.PowerUpsContainer .EmptyPowerups .Icon, .PowerUpsContainer .EmptyPowerups .NoPowerTitle {
|
|
63
|
+
text-align: center;
|
|
64
|
+
}
|
|
65
|
+
.PowerUpsContainer .EmptyPowerups .Icon svg, .PowerUpsContainer .EmptyPowerups .NoPowerTitle svg {
|
|
66
|
+
width: 40px;
|
|
67
|
+
}
|
|
68
|
+
.PowerUpsContainer .EmptyPowerups .NoPowerTitle {
|
|
69
|
+
font-size: 1.2em;
|
|
70
|
+
font-weight: bold;
|
|
71
|
+
margin: 10px;
|
|
72
|
+
}
|
|
73
|
+
.PowerUpsContainer .PowerUps {
|
|
74
|
+
width: 100%;
|
|
75
|
+
gap: 12px;
|
|
76
|
+
display: flex;
|
|
77
|
+
flex-direction: column;
|
|
78
|
+
}
|
|
79
|
+
.PowerUpsContainer .PowerUps .Card {
|
|
80
|
+
width: 100%;
|
|
81
|
+
height: 307px;
|
|
82
|
+
gap: 12px;
|
|
83
|
+
border-radius: 12px;
|
|
84
|
+
border: 2px solid var(--emw--button-border-color-secondary, rgba(188, 252, 177, 0.0509803922));
|
|
85
|
+
display: flex;
|
|
86
|
+
flex-direction: row;
|
|
87
|
+
}
|
|
88
|
+
.PowerUpsContainer .PowerUps .Card .CardLeft, .PowerUpsContainer .PowerUps .Card .CardRight {
|
|
89
|
+
display: flex;
|
|
90
|
+
flex-direction: column;
|
|
91
|
+
}
|
|
92
|
+
.PowerUpsContainer .PowerUps .Card .CardLeft {
|
|
93
|
+
padding: 20px;
|
|
94
|
+
width: 35%;
|
|
95
|
+
display: flex;
|
|
96
|
+
flex-direction: column;
|
|
97
|
+
justify-content: space-between;
|
|
98
|
+
}
|
|
99
|
+
.PowerUpsContainer .PowerUps .Card .CardLeft .MainInfo {
|
|
100
|
+
display: flex;
|
|
101
|
+
flex-direction: column;
|
|
102
|
+
gap: 12px;
|
|
103
|
+
}
|
|
104
|
+
.PowerUpsContainer .PowerUps .Card .CardRight {
|
|
105
|
+
padding: 10px;
|
|
106
|
+
}
|
|
107
|
+
.PowerUpsContainer .PowerUps .Card .Description {
|
|
108
|
+
color: #C8D6CE;
|
|
109
|
+
overflow-y: auto;
|
|
110
|
+
height: calc(100% - 60px);
|
|
111
|
+
}
|
|
112
|
+
.PowerUpsContainer .PowerUps .Card .CardLeft .DisplayName {
|
|
113
|
+
width: 100%;
|
|
114
|
+
text-overflow: ellipsis;
|
|
115
|
+
white-space: nowrap;
|
|
116
|
+
overflow: hidden;
|
|
117
|
+
height: 22px;
|
|
118
|
+
gap: 12px;
|
|
119
|
+
}
|
|
120
|
+
.PowerUpsContainer .PowerUps .Card .CardLeft .PowerUpMultiplier {
|
|
121
|
+
text-transform: uppercase;
|
|
122
|
+
font-size: 0.85em;
|
|
123
|
+
color: var(--emw--color-gray-dark, #727672);
|
|
124
|
+
}
|
|
125
|
+
.PowerUpsContainer .PowerUps .Card .CardLeft .PowerUpMultiplier .ExpireCount {
|
|
126
|
+
background-image: linear-gradient(180deg, var(--emw--color-powup-orange1, #EA9018) 0%, var(--emw--color-powup-orange2, #E0A84E) 100%);
|
|
127
|
+
}
|
|
128
|
+
.PowerUpsContainer .PowerUps .Card .CardLeft .ExpireCount, .PowerUpsContainer .PowerUps .Card .CardLeft .TermsC {
|
|
129
|
+
display: inline-block;
|
|
130
|
+
-webkit-background-clip: text;
|
|
131
|
+
background-clip: text;
|
|
132
|
+
color: transparent;
|
|
133
|
+
}
|
|
134
|
+
.PowerUpsContainer .PowerUps .Card .CardLeft .TermsC {
|
|
135
|
+
text-transform: uppercase;
|
|
136
|
+
background-image: linear-gradient(180deg, var(--emw--color-powup-green, #24B24E) 0%, var(--emw--color-powup-light-green, #18CE51) 100%);
|
|
137
|
+
font-size: 0.8em;
|
|
138
|
+
font-weight: bold;
|
|
139
|
+
}
|
|
140
|
+
.PowerUpsContainer .PowerUps .Card .GamesContent {
|
|
141
|
+
margin: 20px;
|
|
142
|
+
flex: 1;
|
|
143
|
+
gap: 12px;
|
|
144
|
+
display: flex;
|
|
145
|
+
border-radius: 8px;
|
|
146
|
+
border: 2px solid var(--emw--color-powup-light-green-0D, rgba(188, 252, 177, 0.0509803922));
|
|
147
|
+
}
|
|
148
|
+
.PowerUpsContainer .PowerUps .Card .GamesContent .GamesTitle {
|
|
149
|
+
display: flex;
|
|
150
|
+
flex-direction: row;
|
|
151
|
+
}
|
|
152
|
+
.PowerUpsContainer .PowerUps .Card .GamesContent .GamesTitle .Title2 {
|
|
153
|
+
text-transform: capitalize;
|
|
154
|
+
}
|
|
155
|
+
.PowerUpsContainer .PowerUps .Card .GamesContent .GamesTitle .GamesAmount {
|
|
156
|
+
opacity: 0.8;
|
|
157
|
+
}
|
|
158
|
+
.PowerUpsContainer .PowerUps .Card .GamesContent .GameTitleTip {
|
|
159
|
+
color: var(--emw--color-powup-gray-green, #C8D6CE);
|
|
160
|
+
font-size: 0.8rem;
|
|
161
|
+
}
|
|
162
|
+
.PowerUpsContainer .PowerUps .Card .GamesContent .GamesList {
|
|
163
|
+
display: flex;
|
|
164
|
+
justify-content: center;
|
|
165
|
+
flex: 1;
|
|
166
|
+
overflow-y: auto;
|
|
167
|
+
scrollbar-width: thin;
|
|
168
|
+
scrollbar-color: var(--emw--background-gray-color, gray) transparent;
|
|
169
|
+
}
|
|
170
|
+
.PowerUpsContainer .PowerUps .Card .GamesContent .GamesList::-webkit-scrollbar-track {
|
|
171
|
+
background-color: transparent;
|
|
172
|
+
border-radius: 5px;
|
|
173
|
+
}
|
|
174
|
+
.PowerUpsContainer .PowerUps .Card .GamesContent .GamesList .Games {
|
|
175
|
+
padding: 0;
|
|
176
|
+
display: flex;
|
|
177
|
+
align-items: flex-start;
|
|
178
|
+
justify-content: flex-start;
|
|
179
|
+
flex-wrap: wrap;
|
|
180
|
+
gap: calc(30px / (var(--game-amount-line) - 1));
|
|
181
|
+
}
|
|
182
|
+
.PowerUpsContainer .PowerUps .Card .GamesContent .GamesList .Games .Game {
|
|
183
|
+
width: calc((100% - 30px) / var(--game-amount-line));
|
|
184
|
+
cursor: pointer;
|
|
185
|
+
position: relative;
|
|
186
|
+
}
|
|
187
|
+
.PowerUpsContainer .PowerUps .Card .GamesContent .GamesList .Games .Game .GameMask {
|
|
188
|
+
transition: opacity;
|
|
189
|
+
transition-duration: 0.2s;
|
|
190
|
+
opacity: 0;
|
|
191
|
+
position: absolute;
|
|
192
|
+
width: 70%;
|
|
193
|
+
height: 100%;
|
|
194
|
+
}
|
|
195
|
+
.PowerUpsContainer .PowerUps .Card .GamesContent .GamesList .Games .Game:hover .mask-filter {
|
|
196
|
+
opacity: 1;
|
|
197
|
+
}
|
|
198
|
+
.PowerUpsContainer .PowerUps .Card .GamesContent .GamesList .Games .Game:hover img {
|
|
199
|
+
opacity: 0.4;
|
|
200
|
+
filter: blur(1.5px);
|
|
201
|
+
}
|
|
202
|
+
.PowerUpsContainer .PowerUps .Card .GamesContent .GamesList .Games .Game:hover .GameMask {
|
|
203
|
+
opacity: 1;
|
|
204
|
+
mix-blend-mode: screen;
|
|
205
|
+
background-color: var(--emw--color-powup-green, #24B24E);
|
|
206
|
+
display: flex;
|
|
207
|
+
justify-content: center;
|
|
208
|
+
align-items: center;
|
|
209
|
+
position: absolute;
|
|
210
|
+
width: 100%;
|
|
211
|
+
left: 0;
|
|
212
|
+
height: 100%;
|
|
213
|
+
top: 0;
|
|
214
|
+
border-radius: 8px;
|
|
215
|
+
}
|
|
216
|
+
.PowerUpsContainer .PowerUps .Card .GamesContent .GamesList .Games .Game:hover .GameMask .PlayBtn {
|
|
217
|
+
border: 2px solid var(--emw--color-powup-gray, #f0f0f0);
|
|
218
|
+
padding: 5px 3px;
|
|
219
|
+
border-radius: 3px;
|
|
220
|
+
}
|
|
221
|
+
.PowerUpsContainer .Pagination {
|
|
222
|
+
display: flex;
|
|
223
|
+
justify-content: center;
|
|
224
|
+
}
|