@rpg-engine/long-bow 0.7.8 → 0.7.9

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.8",
3
+ "version": "0.7.9",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.js",
6
6
  "typings": "dist/index.d.ts",
@@ -130,6 +130,7 @@ export const ChatRevamp: React.FC<IChatRevampProps> = ({
130
130
  </Ellipsis>
131
131
  </ListElement>
132
132
  <CloseButton
133
+ className="close-button"
133
134
  onPointerDown={() => onRemoveRecentChatCharacter?.(character)}
134
135
  >
135
136
  <RxCross2 size={16} />
@@ -212,7 +213,7 @@ const Tab = styled.button<{ active: boolean }>`
212
213
 
213
214
  background-color: ${props =>
214
215
  props.active ? uiColors.orange : 'rgba(0, 0, 0, 0.2)'};
215
- color: ${props => (props.active ? 'white' : uiColors.gray)};
216
+ color: ${props => (props.active ? 'white' : uiColors.darkGray)};
216
217
  `;
217
218
 
218
219
  const PrivateChatContainer = styled.div<{ width: string; height: string }>`