@everymatrix/player-account-gaming-limits-popup 0.0.256 → 0.0.259
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@everymatrix/player-account-gaming-limits-popup",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.259",
|
|
4
4
|
"main": "dist/player-account-gaming-limits-popup.js",
|
|
5
5
|
"svelte": "src/index.ts",
|
|
6
6
|
"scripts": {
|
|
@@ -36,5 +36,5 @@
|
|
|
36
36
|
"publishConfig": {
|
|
37
37
|
"access": "public"
|
|
38
38
|
},
|
|
39
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "7e26e42bac250a646d98bd80910b234522350fd6"
|
|
40
40
|
}
|
|
@@ -73,13 +73,6 @@
|
|
|
73
73
|
|
|
74
74
|
|
|
75
75
|
<style lang="scss">
|
|
76
|
-
//This function does a multiplication
|
|
77
|
-
// in order to work with px the
|
|
78
|
-
// same way as working with em
|
|
79
|
-
@function ttp($value) {
|
|
80
|
-
$multiplicator: 16px;
|
|
81
|
-
@return $value * $multiplicator;
|
|
82
|
-
}
|
|
83
76
|
|
|
84
77
|
:host {
|
|
85
78
|
font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';
|
|
@@ -101,12 +94,12 @@
|
|
|
101
94
|
background: var(--emfe-w-color-gray-50, #F9F8F8);
|
|
102
95
|
}
|
|
103
96
|
.InfoCardPopupWrapper {
|
|
104
|
-
width:
|
|
105
|
-
padding:
|
|
97
|
+
width: 200px;
|
|
98
|
+
padding: 20px;
|
|
106
99
|
color: var(--emfe-w-color-black, #000000);
|
|
107
100
|
background: var(--emfe-w-color-white, #FFFFFF);
|
|
108
|
-
box-shadow:
|
|
109
|
-
border-radius:
|
|
101
|
+
box-shadow: 0 4px 12px var(--emfe-w-color-gray-100, #E6E6E6);
|
|
102
|
+
border-radius: 5px;
|
|
110
103
|
display: block;
|
|
111
104
|
position: absolute;
|
|
112
105
|
top: 32px;
|
|
@@ -115,10 +108,10 @@
|
|
|
115
108
|
&:before {
|
|
116
109
|
content: "";
|
|
117
110
|
position: absolute;
|
|
118
|
-
top: -
|
|
119
|
-
left:
|
|
111
|
+
top: -7px;
|
|
112
|
+
left: 104px;
|
|
120
113
|
border-style: solid;
|
|
121
|
-
border-width: 0
|
|
114
|
+
border-width: 0 7px 7px;
|
|
122
115
|
border-color: var(--emfe-w-color-white, #FFFFFF) transparent;
|
|
123
116
|
display: block;
|
|
124
117
|
width: 0;
|
|
@@ -132,13 +125,13 @@
|
|
|
132
125
|
transform: translate(-50%, -50%);
|
|
133
126
|
z-index: 102;
|
|
134
127
|
.InfoCardPopupTitle {
|
|
135
|
-
font-size:
|
|
128
|
+
font-size: 18px;
|
|
136
129
|
}
|
|
137
130
|
.InfoCardPopupCloseButton {
|
|
138
|
-
width:
|
|
131
|
+
width: 30px;
|
|
139
132
|
}
|
|
140
133
|
.InfoCardPopupContent {
|
|
141
|
-
font-size:
|
|
134
|
+
font-size: 16px;
|
|
142
135
|
}
|
|
143
136
|
&:before {
|
|
144
137
|
content: none;
|
|
@@ -148,32 +141,32 @@
|
|
|
148
141
|
.InfoCardPopupHeader {
|
|
149
142
|
display: inline-flex;
|
|
150
143
|
.InfoCardPopupTitle {
|
|
151
|
-
line-height:
|
|
152
|
-
font-size:
|
|
144
|
+
line-height: 24px;
|
|
145
|
+
font-size: 16px;
|
|
153
146
|
font-weight: 400;
|
|
154
|
-
padding-left:
|
|
147
|
+
padding-left: 10px;
|
|
155
148
|
}
|
|
156
149
|
}
|
|
157
150
|
.InfoCardPopupIcon {
|
|
158
151
|
display: flex;
|
|
159
|
-
font-size:
|
|
160
|
-
width:
|
|
161
|
-
height:
|
|
152
|
+
font-size: 24px;
|
|
153
|
+
width: 24px;
|
|
154
|
+
height: 24px;
|
|
162
155
|
background: transparent;
|
|
163
156
|
border: 1px solid var(--emfe-w-color-black, #000000);
|
|
164
157
|
align-items: center;
|
|
165
158
|
justify-content: center;
|
|
166
|
-
border-radius:
|
|
159
|
+
border-radius: 30px;
|
|
167
160
|
}
|
|
168
161
|
.InfoCardPopupContent {
|
|
169
|
-
font-size:
|
|
162
|
+
font-size: 14px;
|
|
170
163
|
font-weight: 300;
|
|
171
164
|
}
|
|
172
165
|
.InfoCardPopupCloseButton {
|
|
173
|
-
width:
|
|
166
|
+
width: 20px;
|
|
174
167
|
position: absolute;
|
|
175
|
-
right:
|
|
176
|
-
top:
|
|
168
|
+
right: 10px;
|
|
169
|
+
top: 10px;
|
|
177
170
|
cursor: pointer;
|
|
178
171
|
transition-duration: 0.3s;
|
|
179
172
|
&:hover {
|
|
@@ -186,17 +179,17 @@
|
|
|
186
179
|
display: flex;
|
|
187
180
|
align-items: center;
|
|
188
181
|
justify-content: center;
|
|
189
|
-
top:
|
|
190
|
-
right:
|
|
191
|
-
padding:
|
|
182
|
+
top: 32px;
|
|
183
|
+
right: 32px;
|
|
184
|
+
padding: 16px;
|
|
192
185
|
border-radius: 50%;
|
|
193
186
|
color: var(--emfe-w-color-white, #FFFFFF);
|
|
194
187
|
cursor: pointer;
|
|
195
188
|
transition: all 150ms ease-in-out;
|
|
196
189
|
|
|
197
190
|
svg {
|
|
198
|
-
width:
|
|
199
|
-
height:
|
|
191
|
+
width: 32px;
|
|
192
|
+
height: 32px;
|
|
200
193
|
fill: var(--emfe-w-color-black, #000000);
|
|
201
194
|
}
|
|
202
195
|
}
|