@rpg-engine/long-bow 0.7.71 → 0.7.72
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 +1 -1
- 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 +1 -1
- package/dist/long-bow.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/Item/Inventory/ItemSlot.tsx +4 -0
package/package.json
CHANGED
|
@@ -537,6 +537,10 @@ interface ContainerTypes {
|
|
|
537
537
|
const Container = styled.div<ContainerTypes>`
|
|
538
538
|
margin: 0.1rem;
|
|
539
539
|
|
|
540
|
+
* {
|
|
541
|
+
border: 1px solid blue;
|
|
542
|
+
}
|
|
543
|
+
|
|
540
544
|
.react-draggable-dragging {
|
|
541
545
|
// If dragging item, set opacity to 0
|
|
542
546
|
opacity: ${({ isDraggingItem }) => (isDraggingItem ? 0 : 1)};
|