@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/dist/long-bow.cjs.development.js +2 -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 +2 -1
- package/dist/long-bow.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/ChatRevamp/ChatRevamp.tsx +2 -1
package/package.json
CHANGED
|
@@ -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.
|
|
216
|
+
color: ${props => (props.active ? 'white' : uiColors.darkGray)};
|
|
216
217
|
`;
|
|
217
218
|
|
|
218
219
|
const PrivateChatContainer = styled.div<{ width: string; height: string }>`
|