@rpg-engine/long-bow 0.1.89 → 0.1.90
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 +5 -4
- 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 +5 -4
- package/dist/long-bow.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/SkillProgressBar.tsx +1 -2
- package/src/components/SkillsContainer.tsx +4 -3
package/package.json
CHANGED
|
@@ -81,7 +81,7 @@ const SpriteContainer = styled.div`
|
|
|
81
81
|
`;
|
|
82
82
|
|
|
83
83
|
const SkillDisplayContainer = styled.div`
|
|
84
|
-
margin:
|
|
84
|
+
margin: 0 auto;
|
|
85
85
|
|
|
86
86
|
p {
|
|
87
87
|
margin: 0;
|
|
@@ -120,5 +120,4 @@ const ProgressTitle = styled.div`
|
|
|
120
120
|
span {
|
|
121
121
|
font-size: 0.6rem;
|
|
122
122
|
}
|
|
123
|
-
margin-top: 10px;
|
|
124
123
|
`;
|
|
@@ -66,6 +66,7 @@ export const SkillsContainer: React.FC<ISkillContainerProps> = ({
|
|
|
66
66
|
|
|
67
67
|
output.push(
|
|
68
68
|
<SkillProgressBar
|
|
69
|
+
key={key}
|
|
69
70
|
skillName={_.capitalize(key)}
|
|
70
71
|
bgColor={skillCategoryColor}
|
|
71
72
|
level={skillDetails.level || 0}
|
|
@@ -162,7 +163,7 @@ export const SkillsContainer: React.FC<ISkillContainerProps> = ({
|
|
|
162
163
|
const SkillsDraggableContainer = styled(DraggableContainer)`
|
|
163
164
|
border: 1px solid black;
|
|
164
165
|
width: 400px;
|
|
165
|
-
height:
|
|
166
|
+
height: 90%;
|
|
166
167
|
overflow-y: scroll;
|
|
167
168
|
.DraggableContainer__TitleContainer-sc-184mpyl-2 {
|
|
168
169
|
width: auto;
|
|
@@ -173,9 +174,9 @@ const SkillsDraggableContainer = styled(DraggableContainer)`
|
|
|
173
174
|
const SkillSplitDiv = styled.div`
|
|
174
175
|
width: 100%;
|
|
175
176
|
font-size: 11px;
|
|
176
|
-
margin-top: 10px;
|
|
177
177
|
hr {
|
|
178
|
-
margin:
|
|
178
|
+
margin: 0;
|
|
179
|
+
margin-bottom: 1rem;
|
|
179
180
|
padding: 0px;
|
|
180
181
|
}
|
|
181
182
|
p {
|