@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rpg-engine/long-bow",
3
- "version": "0.7.71",
3
+ "version": "0.7.72",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.js",
6
6
  "typings": "dist/index.d.ts",
@@ -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)};