lighteningcards 2.2.0 → 2.2.2
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/index.cjs.js +449 -1236
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.css +1 -1
- package/dist/index.css.map +1 -1
- package/dist/index.esm.js +449 -1236
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/LighteningCard.css +8 -4
- package/src/components/LightningCardHTML.js +2 -2
package/package.json
CHANGED
package/src/LighteningCard.css
CHANGED
|
@@ -2,7 +2,8 @@
|
|
|
2
2
|
font-family: Palatino-Bold;
|
|
3
3
|
font-style: normal;
|
|
4
4
|
font-weight: 400;
|
|
5
|
-
src: url(https://static.egcdn.com/frontend/evo/r2/fonts/palatinobo.675fff04.woff2)
|
|
5
|
+
src: url(https://static.egcdn.com/frontend/evo/r2/fonts/palatinobo.675fff04.woff2)
|
|
6
|
+
format("woff2");
|
|
6
7
|
}
|
|
7
8
|
|
|
8
9
|
.lightening-card {
|
|
@@ -18,7 +19,7 @@
|
|
|
18
19
|
|
|
19
20
|
@media (min-width: 768px) {
|
|
20
21
|
.lightening-card.five-cards {
|
|
21
|
-
min-height:
|
|
22
|
+
min-height: 130px;
|
|
22
23
|
}
|
|
23
24
|
}
|
|
24
25
|
|
|
@@ -108,6 +109,7 @@
|
|
|
108
109
|
transform: translateX(-50%);
|
|
109
110
|
width: 85%;
|
|
110
111
|
z-index: 1;
|
|
112
|
+
background: black;
|
|
111
113
|
}
|
|
112
114
|
|
|
113
115
|
.multiplier--22733 {
|
|
@@ -191,6 +193,7 @@
|
|
|
191
193
|
display: inline-block;
|
|
192
194
|
position: relative;
|
|
193
195
|
width: 100%;
|
|
196
|
+
z-index: 100;
|
|
194
197
|
}
|
|
195
198
|
|
|
196
199
|
.card--32433,
|
|
@@ -220,10 +223,10 @@
|
|
|
220
223
|
}
|
|
221
224
|
|
|
222
225
|
.lightningCard--9ec39.desktop--36d4c {
|
|
223
|
-
height: calc(
|
|
226
|
+
height: calc(50px / var(--reverseScale, 1));
|
|
224
227
|
margin: 0 calc(6px / var(--reverseScale, 1))
|
|
225
228
|
calc(3px / var(--reverseScale, 1));
|
|
226
|
-
width: calc(
|
|
229
|
+
width: calc(35px / var(--reverseScale, 1));
|
|
227
230
|
}
|
|
228
231
|
|
|
229
232
|
.lightningCard--9ec39.twoCards--4ca7e {
|
|
@@ -254,6 +257,7 @@
|
|
|
254
257
|
transform: translateX(-51%);
|
|
255
258
|
width: 85%;
|
|
256
259
|
z-index: 1;
|
|
260
|
+
background: black;
|
|
257
261
|
}
|
|
258
262
|
}
|
|
259
263
|
|
|
@@ -363,7 +363,7 @@ const LightningCardHTML = ({
|
|
|
363
363
|
{multiplier !== null && multiplier !== undefined && (
|
|
364
364
|
<div
|
|
365
365
|
className="multiplier--22733"
|
|
366
|
-
style={{ fontSize: "
|
|
366
|
+
style={ { fontSize: "15px" } }
|
|
367
367
|
>
|
|
368
368
|
<div className="multiplier--fe086">
|
|
369
369
|
<span
|
|
@@ -475,7 +475,7 @@ const LightningCardHTML = ({
|
|
|
475
475
|
{multiplier !== null && multiplier !== undefined && (
|
|
476
476
|
<div
|
|
477
477
|
className="multiplier--22733"
|
|
478
|
-
style={{ fontSize: "
|
|
478
|
+
style={ { fontSize: "15px" } }
|
|
479
479
|
>
|
|
480
480
|
<div className="multiplier--fe086">
|
|
481
481
|
<span
|