@learnpack/learnpack 5.0.116 → 5.0.118
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/README.md +13 -13
- package/lib/creatorDist/assets/{index-eOf2cL3F.js → index-BmLJLoHH.js} +1725 -1692
- package/lib/creatorDist/assets/{index-CNNlfS1s.css → index-D5mdIXUX.css} +25 -0
- package/lib/creatorDist/index.html +2 -2
- package/oclif.manifest.json +1 -1
- package/package.json +1 -1
- package/src/creator/src/components/syllabus/Sidebar.tsx +24 -6
- package/src/creator/src/index.css +17 -0
- package/src/creatorDist/assets/{index-eOf2cL3F.js → index-BmLJLoHH.js} +1725 -1692
- package/src/creatorDist/assets/{index-CNNlfS1s.css → index-D5mdIXUX.css} +25 -0
- package/src/creatorDist/index.html +2 -2
@@ -390,9 +390,15 @@
|
|
390
390
|
.top-0 {
|
391
391
|
top: calc(var(--spacing) * 0);
|
392
392
|
}
|
393
|
+
.top-1 {
|
394
|
+
top: calc(var(--spacing) * 1);
|
395
|
+
}
|
393
396
|
.top-2 {
|
394
397
|
top: calc(var(--spacing) * 2);
|
395
398
|
}
|
399
|
+
.right-1 {
|
400
|
+
right: calc(var(--spacing) * 1);
|
401
|
+
}
|
396
402
|
.right-2 {
|
397
403
|
right: calc(var(--spacing) * 2);
|
398
404
|
}
|
@@ -1080,6 +1086,10 @@
|
|
1080
1086
|
--tw-duration: 0.3s;
|
1081
1087
|
transition-duration: 0.3s;
|
1082
1088
|
}
|
1089
|
+
.duration-500 {
|
1090
|
+
--tw-duration: 0.5s;
|
1091
|
+
transition-duration: 0.5s;
|
1092
|
+
}
|
1083
1093
|
.ease-in-out {
|
1084
1094
|
--tw-ease: var(--ease-in-out);
|
1085
1095
|
transition-timing-function: var(--ease-in-out);
|
@@ -1353,6 +1363,21 @@ h1 {
|
|
1353
1363
|
.border-heavy-blue:focus {
|
1354
1364
|
outline: 1px solid #9fbdf0;
|
1355
1365
|
}
|
1366
|
+
.cloudy {
|
1367
|
+
opacity: 0;
|
1368
|
+
transition: opacity 0.5s ease-in-out;
|
1369
|
+
animation: 0.5s ease-in-out forwards fadeIn;
|
1370
|
+
}
|
1371
|
+
@keyframes fadeIn {
|
1372
|
+
0% {
|
1373
|
+
opacity: 0;
|
1374
|
+
transform: translateY(20px);
|
1375
|
+
}
|
1376
|
+
to {
|
1377
|
+
opacity: 1;
|
1378
|
+
transform: translateY(0);
|
1379
|
+
}
|
1380
|
+
}
|
1356
1381
|
@property --tw-translate-x {
|
1357
1382
|
syntax: "*";
|
1358
1383
|
inherits: false;
|
@@ -10,8 +10,8 @@
|
|
10
10
|
/>
|
11
11
|
|
12
12
|
<title>Learnpack Creator: Craft tutorials in seconds!</title>
|
13
|
-
<script type="module" crossorigin src="/creator/assets/index-
|
14
|
-
<link rel="stylesheet" crossorigin href="/creator/assets/index-
|
13
|
+
<script type="module" crossorigin src="/creator/assets/index-BmLJLoHH.js"></script>
|
14
|
+
<link rel="stylesheet" crossorigin href="/creator/assets/index-D5mdIXUX.css">
|
15
15
|
</head>
|
16
16
|
<body>
|
17
17
|
<div id="root"></div>
|