@learnpack/learnpack 5.0.144 → 5.0.148

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.
@@ -98,6 +98,8 @@
98
98
  --text-2xl--line-height: calc(2 / 1.5);
99
99
  --text-4xl: 2.25rem;
100
100
  --text-4xl--line-height: calc(2.5 / 2.25);
101
+ --text-7xl: 4.5rem;
102
+ --text-7xl--line-height: 1;
101
103
  --font-weight-medium: 500;
102
104
  --font-weight-semibold: 600;
103
105
  --font-weight-bold: 700;
@@ -426,11 +428,11 @@
426
428
  .z-10 {
427
429
  z-index: 10;
428
430
  }
429
- .z-20 {
430
- z-index: 20;
431
+ .z-30 {
432
+ z-index: 30;
431
433
  }
432
- .z-40 {
433
- z-index: 40;
434
+ .z-31 {
435
+ z-index: 31;
434
436
  }
435
437
  .z-50 {
436
438
  z-index: 50;
@@ -496,6 +498,12 @@
496
498
  .mt-6 {
497
499
  margin-top: calc(var(--spacing) * 6);
498
500
  }
501
+ .mt-10 {
502
+ margin-top: calc(var(--spacing) * 10);
503
+ }
504
+ .mt-14 {
505
+ margin-top: calc(var(--spacing) * 14);
506
+ }
499
507
  .mr-1 {
500
508
  margin-right: calc(var(--spacing) * 1);
501
509
  }
@@ -613,6 +621,9 @@
613
621
  .w-\[100px\] {
614
622
  width: 100px;
615
623
  }
624
+ .w-\[280px\] {
625
+ width: 280px;
626
+ }
616
627
  .w-full {
617
628
  width: 100%;
618
629
  }
@@ -899,6 +910,9 @@
899
910
  .p-8 {
900
911
  padding: calc(var(--spacing) * 8);
901
912
  }
913
+ .p-10 {
914
+ padding: calc(var(--spacing) * 10);
915
+ }
902
916
  .px-2 {
903
917
  padding-inline: calc(var(--spacing) * 2);
904
918
  }
@@ -908,6 +922,9 @@
908
922
  .px-4 {
909
923
  padding-inline: calc(var(--spacing) * 4);
910
924
  }
925
+ .px-20 {
926
+ padding-inline: calc(var(--spacing) * 20);
927
+ }
911
928
  .py-1 {
912
929
  padding-block: calc(var(--spacing) * 1);
913
930
  }
@@ -943,6 +960,10 @@
943
960
  font-size: var(--text-4xl);
944
961
  line-height: var(--tw-leading, var(--text-4xl--line-height));
945
962
  }
963
+ .text-7xl {
964
+ font-size: var(--text-7xl);
965
+ line-height: var(--tw-leading, var(--text-7xl--line-height));
966
+ }
946
967
  .text-lg {
947
968
  font-size: var(--text-lg);
948
969
  line-height: var(--tw-leading, var(--text-lg--line-height));
@@ -1257,10 +1278,6 @@ body {
1257
1278
  min-height: 100vh;
1258
1279
  margin: 0;
1259
1280
  }
1260
- h1 {
1261
- font-size: 3.2em;
1262
- line-height: 1.1;
1263
- }
1264
1281
  .bg-learnpack-blue {
1265
1282
  background-color: var(--soft-blue);
1266
1283
  }