@rpg-engine/long-bow 0.6.2 → 0.6.3

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.6.2",
3
+ "version": "0.6.3",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.js",
6
6
  "typings": "dist/index.d.ts",
@@ -64,7 +64,9 @@ const ItemQtyContainer = styled.div`
64
64
  const Gem = styled.div<{ color: string }>`
65
65
  width: 8px;
66
66
  height: 8px;
67
- background-color: ${({ color }) => color};
67
+ background: ${({ color }) =>
68
+ `radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 1), transparent 20%),
69
+ linear-gradient(45deg, ${color}, ${color} 40%, rgba(255, 255, 255, 0.2))`};
68
70
  border: 1px solid black;
69
71
  transform: rotate(45deg);
70
72
  margin: 0 2px;