@rpg-engine/long-bow 0.6.16 → 0.6.17
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/long-bow.cjs.development.js +11 -5
- package/dist/long-bow.cjs.development.js.map +1 -1
- package/dist/long-bow.cjs.production.min.js +1 -1
- package/dist/long-bow.cjs.production.min.js.map +1 -1
- package/dist/long-bow.esm.js +11 -5
- package/dist/long-bow.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/Tutorial/TutorialStepper.tsx +10 -4
package/package.json
CHANGED
|
@@ -31,10 +31,12 @@ export const TutorialStepper = ({
|
|
|
31
31
|
<img src={lesson.image} alt={lesson.title} />
|
|
32
32
|
</LessonImage>
|
|
33
33
|
)}
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
34
|
+
<LessonFooter className="lesson-footer">
|
|
35
|
+
{lesson.body && (
|
|
36
|
+
<LessonBody className="lesson-body">{lesson.body}</LessonBody>
|
|
37
|
+
)}
|
|
38
|
+
{lesson.text && <DynamicText text={lesson.text} />}
|
|
39
|
+
</LessonFooter>
|
|
38
40
|
</LessonContainer>
|
|
39
41
|
),
|
|
40
42
|
id: index,
|
|
@@ -66,6 +68,10 @@ const Container = styled.div`
|
|
|
66
68
|
margin: 0 auto;
|
|
67
69
|
`;
|
|
68
70
|
|
|
71
|
+
const LessonFooter = styled.div`
|
|
72
|
+
margin-top: 2rem;
|
|
73
|
+
`;
|
|
74
|
+
|
|
69
75
|
const LessonImage = styled.div`
|
|
70
76
|
display: flex;
|
|
71
77
|
justify-content: center;
|