analytica-frontend-lib 1.1.41 → 1.1.42

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
@@ -961,6 +961,9 @@
961
961
  .min-h-\[600px\] {
962
962
  min-height: 600px;
963
963
  }
964
+ .min-h-full {
965
+ min-height: 100%;
966
+ }
964
967
  .min-h-screen {
965
968
  min-height: 100vh;
966
969
  }
@@ -1332,6 +1335,9 @@
1332
1335
  .grid-cols-\[1fr_auto\] {
1333
1336
  grid-template-columns: 1fr auto;
1334
1337
  }
1338
+ .\!flex-col {
1339
+ flex-direction: column !important;
1340
+ }
1335
1341
  .flex-col {
1336
1342
  flex-direction: column;
1337
1343
  }
@@ -1350,6 +1356,9 @@
1350
1356
  .items-start {
1351
1357
  align-items: flex-start;
1352
1358
  }
1359
+ .items-stretch {
1360
+ align-items: stretch;
1361
+ }
1353
1362
  .justify-around {
1354
1363
  justify-content: space-around;
1355
1364
  }