@everymatrix/general-player-register-form 0.0.223 → 0.0.228

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.223",
3
+ "version": "0.0.228",
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": "5372f53977f5b7ba141b1afe5dc2b85d2c0bc9e7"
39
+ "gitHead": "29054c0e1620b86e700d983b67e48278178a239d"
40
40
  }
@@ -330,7 +330,7 @@ $: lang && setActiveLanguage();
330
330
  }
331
331
 
332
332
  .RegisterFormWrapper {
333
- background: #F9F8F8;
333
+ background: var(--emfe-w-color-gray-50, #F9F8F8);
334
334
  display: inline-flex;
335
335
  width: 100%;
336
336
  }
@@ -347,10 +347,10 @@ $: lang && setActiveLanguage();
347
347
  padding: ttp(1.563);
348
348
  height: 404px;
349
349
  overflow-y: auto;
350
- scrollbar-color: #cfcfcf #f1f1f1;
350
+ scrollbar-color: var(--emfe-w-color-gray-100, #E6E6E6) var(--emfe-w-color-gray-50, #F9F8F8);
351
351
  scrollbar-width: thin;
352
352
  &.RegisterFormContainerMobile {
353
- padding: 40px 20px;;
353
+ padding: 40px 20px;
354
354
  height: auto;
355
355
  overflow-y: initial;
356
356
  }
@@ -362,12 +362,12 @@ $: lang && setActiveLanguage();
362
362
 
363
363
  /* Track */
364
364
  .RegisterFormContainer::-webkit-scrollbar-track {
365
- background: #f1f1f1;
365
+ background: var(--emfe-w-color-gray-50, #F9F8F8);
366
366
  }
367
367
 
368
368
  /* Handle */
369
369
  .RegisterFormContainer::-webkit-scrollbar-thumb {
370
- background: #cfcfcf;
370
+ background: var(--emfe-w-color-gray-100, #E6E6E6);
371
371
  }
372
372
 
373
373
  .RegisterSteps {
@@ -381,17 +381,17 @@ $: lang && setActiveLanguage();
381
381
  .RegisterThirdStepDash {
382
382
  width: 50px;
383
383
  height: 2px;
384
- background-color: #D1D1D1;
384
+ background-color: var(--emfe-w-color-gray-100, #E6E6E6);
385
385
  }
386
386
 
387
387
  .RegisterStepDashColor {
388
- background-color: #D0046C;
388
+ background-color: var(--emfe-w-color-primary, #D0046C);
389
389
  }
390
390
 
391
391
  .RegisterStepNext {
392
- color: #fff;
393
- background: #D0046C;
394
- border: 1px solid #D0046C;
392
+ color: var(--emfe-w-color-white, #FFFFFF);
393
+ background: var(--emfe-w-color-primary, #D0046C);
394
+ border: 1px solid var(--emfe-w-color-primary, #D0046C);
395
395
  border-radius: 5px;
396
396
  width: 100%;
397
397
  height: ttp(3.75);
@@ -413,29 +413,29 @@ $: lang && setActiveLanguage();
413
413
  width: ttp(4.625);
414
414
  }
415
415
  .RegisterConfirmationTitle {
416
- color: #16CE16;
416
+ color: var(--emfe-w-color-green, #48952a);
417
417
  font-size: ttp(1.5);
418
418
  font-weight: 400;
419
419
  text-transform: uppercase;
420
420
  margin-bottom: 0;
421
421
  }
422
422
  .RegisterConfirmationSubtitle {
423
- color: #58586B;
423
+ color: var(--emfe-w-color-gray-300, #58586B);
424
424
  font-size: ttp(1);
425
425
  line-height: ttp(1.2);
426
426
  margin-bottom: ttp(1.5);
427
427
  }
428
428
  .RegisterConfirmationNote {
429
- color: #000000;
429
+ color: var(--emfe-w-color-black, #000000);
430
430
  font-size: ttp(1.1);
431
431
  line-height: ttp(1.4);
432
432
  }
433
433
  }
434
434
 
435
435
  .RegisterConfirmationGoToLogin {
436
- color: #fff;
437
- background: #D0046C;
438
- border: 1px solid #D0046C;
436
+ color: var(--emfe-w-color-white, #FFFFFF);
437
+ background: var(--emfe-w-color-primary, #D0046C);
438
+ border: 1px solid var(--emfe-w-color-primary, #D0046C);
439
439
  border-radius: 5px;
440
440
  width: 100%;
441
441
  height: ttp(3.75);