@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/dist/long-bow.cjs.development.js +3 -2
- 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 +3 -2
- package/dist/long-bow.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/DraggableContainer.tsx +0 -1
- package/src/components/SkillsContainer.tsx +2 -1
package/package.json
CHANGED
|
@@ -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:
|
|
175
|
+
max-width: 450px;
|
|
175
176
|
|
|
176
177
|
height: 90%;
|
|
177
178
|
.DraggableContainer__TitleContainer-sc-184mpyl-2 {
|