analytica-frontend-lib 1.2.10 → 1.2.12

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/styles.css CHANGED
@@ -114,6 +114,7 @@
114
114
  --tracking-wide: 0.025em;
115
115
  --leading-tight: 1.25;
116
116
  --leading-normal: 1.5;
117
+ --leading-relaxed: 1.625;
117
118
  --radius-xs: 0.125rem;
118
119
  --radius-sm: 0.25rem;
119
120
  --radius-md: 0.375rem;
@@ -852,6 +853,9 @@
852
853
  .h-24 {
853
854
  height: calc(var(--spacing) * 24);
854
855
  }
856
+ .h-72 {
857
+ height: calc(var(--spacing) * 72);
858
+ }
855
859
  .h-\[1em\] {
856
860
  height: 1em;
857
861
  }
@@ -966,6 +970,9 @@
966
970
  .min-h-24 {
967
971
  min-height: calc(var(--spacing) * 24);
968
972
  }
973
+ .min-h-96 {
974
+ min-height: calc(var(--spacing) * 96);
975
+ }
969
976
  .min-h-\[50px\] {
970
977
  min-height: 50px;
971
978
  }
@@ -1053,6 +1060,9 @@
1053
1060
  .w-20 {
1054
1061
  width: calc(var(--spacing) * 20);
1055
1062
  }
1063
+ .w-72 {
1064
+ width: calc(var(--spacing) * 72);
1065
+ }
1056
1066
  .w-\[1em\] {
1057
1067
  width: 1em;
1058
1068
  }
@@ -2912,6 +2922,9 @@
2912
2922
  .py-0 {
2913
2923
  padding-block: calc(var(--spacing) * 0);
2914
2924
  }
2925
+ .py-0\.5 {
2926
+ padding-block: calc(var(--spacing) * 0.5);
2927
+ }
2915
2928
  .py-1 {
2916
2929
  padding-block: calc(var(--spacing) * 1);
2917
2930
  }
@@ -3014,6 +3027,9 @@
3014
3027
  .text-center {
3015
3028
  text-align: center;
3016
3029
  }
3030
+ .text-justify {
3031
+ text-align: justify;
3032
+ }
3017
3033
  .text-left {
3018
3034
  text-align: left;
3019
3035
  }
@@ -3137,6 +3153,10 @@
3137
3153
  --tw-leading: var(--leading-normal);
3138
3154
  line-height: var(--leading-normal);
3139
3155
  }
3156
+ .leading-relaxed {
3157
+ --tw-leading: var(--leading-relaxed);
3158
+ line-height: var(--leading-relaxed);
3159
+ }
3140
3160
  .leading-tight {
3141
3161
  --tw-leading: var(--leading-tight);
3142
3162
  line-height: var(--leading-tight);