@everymatrix/general-player-register-form 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/general-player-register-form",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.259",
|
|
4
4
|
"main": "dist/general-player-register-form.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
|
}
|
|
@@ -320,13 +320,6 @@ $: lang && setActiveLanguage();
|
|
|
320
320
|
{/if}
|
|
321
321
|
|
|
322
322
|
<style lang="scss">
|
|
323
|
-
//This function does a multiplication
|
|
324
|
-
// in order to work with px the
|
|
325
|
-
// same way as working with em
|
|
326
|
-
@function ttp($value) {
|
|
327
|
-
$multiplicator: 16px;
|
|
328
|
-
@return $value * $multiplicator;
|
|
329
|
-
}
|
|
330
323
|
|
|
331
324
|
:host {
|
|
332
325
|
font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';
|
|
@@ -347,7 +340,7 @@ $: lang && setActiveLanguage();
|
|
|
347
340
|
|
|
348
341
|
.RegisterFormContainer {
|
|
349
342
|
flex: 1 1 100%;
|
|
350
|
-
padding:
|
|
343
|
+
padding: 25px;
|
|
351
344
|
height: 404px;
|
|
352
345
|
overflow-y: auto;
|
|
353
346
|
scrollbar-color: var(--emfe-w-color-gray-100, #E6E6E6) var(--emfe-w-color-gray-50, #F9F8F8);
|
|
@@ -397,12 +390,12 @@ $: lang && setActiveLanguage();
|
|
|
397
390
|
border: 1px solid var(--emfe-w-color-primary, #D0046C);
|
|
398
391
|
border-radius: 5px;
|
|
399
392
|
width: 100%;
|
|
400
|
-
height:
|
|
393
|
+
height: 60px;
|
|
401
394
|
padding: 0;
|
|
402
395
|
text-transform: uppercase;
|
|
403
|
-
font-size:
|
|
396
|
+
font-size: 18px;
|
|
404
397
|
cursor: pointer;
|
|
405
|
-
margin-top:
|
|
398
|
+
margin-top: 24px;
|
|
406
399
|
}
|
|
407
400
|
|
|
408
401
|
.RegisterConfirmation {
|
|
@@ -411,27 +404,27 @@ $: lang && setActiveLanguage();
|
|
|
411
404
|
align-items: center;
|
|
412
405
|
justify-content: center;
|
|
413
406
|
text-align: center;
|
|
414
|
-
margin-top:
|
|
407
|
+
margin-top: 60px;
|
|
415
408
|
svg {
|
|
416
|
-
width:
|
|
409
|
+
width: 74px;
|
|
417
410
|
}
|
|
418
411
|
.RegisterConfirmationTitle {
|
|
419
412
|
color: var(--emfe-w-color-green, #48952a);
|
|
420
|
-
font-size:
|
|
413
|
+
font-size: 24px;
|
|
421
414
|
font-weight: 400;
|
|
422
415
|
text-transform: uppercase;
|
|
423
416
|
margin-bottom: 0;
|
|
424
417
|
}
|
|
425
418
|
.RegisterConfirmationSubtitle {
|
|
426
419
|
color: var(--emfe-w-color-gray-300, #58586B);
|
|
427
|
-
font-size:
|
|
428
|
-
line-height:
|
|
429
|
-
margin-bottom:
|
|
420
|
+
font-size: 16px;
|
|
421
|
+
line-height: 19px;
|
|
422
|
+
margin-bottom: 24px;
|
|
430
423
|
}
|
|
431
424
|
.RegisterConfirmationNote {
|
|
432
425
|
color: var(--emfe-w-color-black, #000000);
|
|
433
|
-
font-size:
|
|
434
|
-
line-height:
|
|
426
|
+
font-size: 18px;
|
|
427
|
+
line-height: 22px;
|
|
435
428
|
}
|
|
436
429
|
}
|
|
437
430
|
|
|
@@ -441,11 +434,11 @@ $: lang && setActiveLanguage();
|
|
|
441
434
|
border: 1px solid var(--emfe-w-color-primary, #D0046C);
|
|
442
435
|
border-radius: 5px;
|
|
443
436
|
width: 100%;
|
|
444
|
-
height:
|
|
437
|
+
height: 60px;
|
|
445
438
|
padding: 0;
|
|
446
439
|
text-transform: uppercase;
|
|
447
|
-
font-size:
|
|
440
|
+
font-size: 18px;
|
|
448
441
|
cursor: pointer;
|
|
449
|
-
margin-top:
|
|
442
|
+
margin-top: 24px;
|
|
450
443
|
}
|
|
451
444
|
</style>
|