analytica-frontend-lib 1.2.9 → 1.2.11

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
  }
@@ -3014,6 +3024,9 @@
3014
3024
  .text-center {
3015
3025
  text-align: center;
3016
3026
  }
3027
+ .text-justify {
3028
+ text-align: justify;
3029
+ }
3017
3030
  .text-left {
3018
3031
  text-align: left;
3019
3032
  }
@@ -3137,6 +3150,10 @@
3137
3150
  --tw-leading: var(--leading-normal);
3138
3151
  line-height: var(--leading-normal);
3139
3152
  }
3153
+ .leading-relaxed {
3154
+ --tw-leading: var(--leading-relaxed);
3155
+ line-height: var(--leading-relaxed);
3156
+ }
3140
3157
  .leading-tight {
3141
3158
  --tw-leading: var(--leading-tight);
3142
3159
  line-height: var(--leading-tight);