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/Accordation/index.js +62 -53
- package/dist/Accordation/index.js.map +1 -1
- package/dist/Accordation/index.mjs +62 -53
- package/dist/Accordation/index.mjs.map +1 -1
- package/dist/Card/index.js +62 -53
- package/dist/Card/index.js.map +1 -1
- package/dist/Card/index.mjs +62 -53
- package/dist/Card/index.mjs.map +1 -1
- package/dist/Quiz/index.js +66 -56
- package/dist/Quiz/index.js.map +1 -1
- package/dist/Quiz/index.mjs +66 -56
- package/dist/Quiz/index.mjs.map +1 -1
- package/dist/Quiz/useQuizStore/index.d.mts +1 -0
- package/dist/Quiz/useQuizStore/index.d.ts +1 -0
- package/dist/Quiz/useQuizStore/index.js.map +1 -1
- package/dist/Quiz/useQuizStore/index.mjs.map +1 -1
- package/dist/index.css +9 -0
- package/dist/index.css.map +1 -1
- package/dist/index.js +66 -56
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +66 -56
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +9 -0
- package/dist/styles.css.map +1 -1
- package/package.json +1 -1
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
|
}
|