@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/dist/index.d.ts +1 -0
- package/dist/long-bow.cjs.development.js +141 -26
- 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 +142 -28
- package/dist/long-bow.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/ChatRevamp/ChatRevamp.tsx +3 -2
- package/src/index.tsx +1 -0
package/package.json
CHANGED
|
@@ -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:
|
|
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:
|
|
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';
|