@rpg-engine/long-bow 0.8.2 → 0.8.4

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.8.2",
3
+ "version": "0.8.4",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.js",
6
6
  "typings": "dist/index.d.ts",
@@ -220,17 +220,18 @@ const ExpandedChatContent = styled.div`
220
220
  const SocialButtons = styled.div`
221
221
  display: flex;
222
222
  gap: 8px;
223
- margin-right: 32px;
223
+ margin-right: 42px;
224
224
  `;
225
225
 
226
226
  const SocialButton = styled.button`
227
227
  background-color: transparent;
228
228
  border: none;
229
229
  color: white;
230
- font-size: 16px;
230
+ font-size: 20px;
231
231
  cursor: pointer;
232
232
  transition: color 0.3s ease;
233
233
  padding: 4px;
234
+ margin-bottom: 4px;
234
235
 
235
236
  &:hover {
236
237
  color: ${uiColors.yellow};
package/src/index.tsx CHANGED
@@ -47,6 +47,7 @@ export * from './components/shared/SpriteFromAtlas';
47
47
  export * from './components/Shortcuts/Shortcuts';
48
48
  export * from './components/SkillProgressBar';
49
49
  export * from './components/SkillsContainer';
50
+ export * from './components/SocialModal/SocialModal';
50
51
  export * from './components/Spellbook/Spellbook';
51
52
  export * from './components/Stepper';
52
53
  export * from './components/Table/Table';