@rpg-engine/long-bow 0.4.4 → 0.4.6

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.4.4",
3
+ "version": "0.4.6",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.js",
6
6
  "typings": "dist/index.d.ts",
@@ -146,7 +146,6 @@ const CloseButton = styled.div`
146
146
  color: white;
147
147
  z-index: 22;
148
148
  font-size: 1.1rem;
149
-
150
149
  @media (max-width: 950px) {
151
150
  font-size: 1.7rem;
152
151
  padding: 12px;
@@ -124,6 +124,7 @@ export const SkillsContainer: React.FC<ISkillContainerProps> = ({
124
124
  title="Skills"
125
125
  cancelDrag="#skillsDiv"
126
126
  scale={scale}
127
+ width="100%"
127
128
  >
128
129
  {onCloseButton && (
129
130
  <CloseButton onPointerDown={onCloseButton}>X</CloseButton>
@@ -171,7 +172,7 @@ export const SkillsContainer: React.FC<ISkillContainerProps> = ({
171
172
  const SkillsDraggableContainer = styled(DraggableContainer)`
172
173
  border: 1px solid black;
173
174
 
174
- max-width: 380px;
175
+ max-width: 450px;
175
176
 
176
177
  height: 90%;
177
178
  .DraggableContainer__TitleContainer-sc-184mpyl-2 {