@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rpg-engine/long-bow",
3
- "version": "0.1.89",
3
+ "version": "0.1.90",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.js",
6
6
  "typings": "dist/index.d.ts",
@@ -81,7 +81,7 @@ const SpriteContainer = styled.div`
81
81
  `;
82
82
 
83
83
  const SkillDisplayContainer = styled.div`
84
- margin: 5px auto;
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: 800px;
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: 0px;
178
+ margin: 0;
179
+ margin-bottom: 1rem;
179
180
  padding: 0px;
180
181
  }
181
182
  p {