@learnpack/learnpack 5.0.96 → 5.0.100

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.
@@ -88,6 +88,8 @@
88
88
  --text-base--line-height: 1.5;
89
89
  --text-lg: 1.125rem;
90
90
  --text-lg--line-height: calc(1.75 / 1.125);
91
+ --text-2xl: 1.5rem;
92
+ --text-2xl--line-height: calc(2 / 1.5);
91
93
  --text-4xl: 2.25rem;
92
94
  --text-4xl--line-height: calc(2.5 / 2.25);
93
95
  --font-weight-medium: 500;
@@ -460,15 +462,24 @@
460
462
  .mx-2 {
461
463
  margin-inline: calc(var(--spacing) * 2);
462
464
  }
465
+ .-mt-5 {
466
+ margin-top: calc(var(--spacing) * -5);
467
+ }
463
468
  .mt-1 {
464
469
  margin-top: calc(var(--spacing) * 1);
465
470
  }
466
471
  .mt-2 {
467
472
  margin-top: calc(var(--spacing) * 2);
468
473
  }
474
+ .mt-3 {
475
+ margin-top: calc(var(--spacing) * 3);
476
+ }
469
477
  .mt-4 {
470
478
  margin-top: calc(var(--spacing) * 4);
471
479
  }
480
+ .mt-5 {
481
+ margin-top: calc(var(--spacing) * 5);
482
+ }
472
483
  .mt-6 {
473
484
  margin-top: calc(var(--spacing) * 6);
474
485
  }
@@ -487,6 +498,9 @@
487
498
  .mb-6 {
488
499
  margin-bottom: calc(var(--spacing) * 6);
489
500
  }
501
+ .ml-auto {
502
+ margin-left: auto;
503
+ }
490
504
  .block {
491
505
  display: block;
492
506
  }
@@ -508,6 +522,9 @@
508
522
  .h-6 {
509
523
  height: calc(var(--spacing) * 6);
510
524
  }
525
+ .h-10 {
526
+ height: calc(var(--spacing) * 10);
527
+ }
511
528
  .h-15 {
512
529
  height: calc(var(--spacing) * 15);
513
530
  }
@@ -553,6 +570,9 @@
553
570
  .w-6 {
554
571
  width: calc(var(--spacing) * 6);
555
572
  }
573
+ .w-10 {
574
+ width: calc(var(--spacing) * 10);
575
+ }
556
576
  .w-15 {
557
577
  width: calc(var(--spacing) * 15);
558
578
  }
@@ -806,6 +826,9 @@
806
826
  .p-3 {
807
827
  padding: calc(var(--spacing) * 3);
808
828
  }
829
+ .p-4 {
830
+ padding: calc(var(--spacing) * 4);
831
+ }
809
832
  .p-6 {
810
833
  padding: calc(var(--spacing) * 6);
811
834
  }
@@ -848,6 +871,10 @@
848
871
  .font-sans {
849
872
  font-family: var(--font-sans);
850
873
  }
874
+ .text-2xl {
875
+ font-size: var(--text-2xl);
876
+ line-height: var(--tw-leading, var(--text-2xl--line-height));
877
+ }
851
878
  .text-4xl {
852
879
  font-size: var(--text-4xl);
853
880
  line-height: var(--tw-leading, var(--text-4xl--line-height));