@rpg-engine/long-bow 0.7.1 → 0.7.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.7.1",
3
+ "version": "0.7.3",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.js",
6
6
  "typings": "dist/index.d.ts",
@@ -226,8 +226,8 @@ const SendButton = styled.button`
226
226
 
227
227
  const CloseButton = styled.button`
228
228
  position: absolute;
229
- top: -10px;
230
- right: -10px;
229
+ top: 0;
230
+ right: 0;
231
231
  background-color: transparent;
232
232
  border: none;
233
233
  color: white;
@@ -174,7 +174,7 @@ export const ChatRevamp: React.FC<IChatRevampProps> = ({
174
174
  };
175
175
 
176
176
  return (
177
- <Container>
177
+ <>
178
178
  {renderTabs()}
179
179
  <PrivateChatContainer
180
180
  width={styles?.width || '80%'}
@@ -186,14 +186,10 @@ export const ChatRevamp: React.FC<IChatRevampProps> = ({
186
186
  </RecentChatTabContainer>
187
187
  {renderChatContent()}
188
188
  </PrivateChatContainer>
189
- </Container>
189
+ </>
190
190
  );
191
191
  };
192
192
 
193
- const Container = styled.div`
194
- max-width: 800px;
195
- `;
196
-
197
193
  const TabContainer = styled.div`
198
194
  width: 100%;
199
195
  display: flex;