@rpg-engine/long-bow 0.7.10 → 0.7.11
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 +3 -3
- 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 +3 -3
- package/dist/long-bow.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/ChatRevamp/ChatRevamp.tsx +3 -2
package/package.json
CHANGED
|
@@ -298,7 +298,7 @@ const RecentChatLogContainer = styled.div<{ isOpen: boolean }>`
|
|
|
298
298
|
display: ${props => (props.isOpen ? 'flex' : 'none')};
|
|
299
299
|
opacity: ${props => (props.isOpen ? 1 : 0)};
|
|
300
300
|
flex-direction: column;
|
|
301
|
-
gap: 0.5rem
|
|
301
|
+
gap: 0.25rem; // Reduce this from 0.5rem to 0.25rem
|
|
302
302
|
transition: opacity 0.3s ease-in-out;
|
|
303
303
|
padding: 0;
|
|
304
304
|
margin: 0;
|
|
@@ -336,10 +336,11 @@ const ListElementContainer = styled.div`
|
|
|
336
336
|
display: flex;
|
|
337
337
|
justify-content: space-between;
|
|
338
338
|
align-items: center;
|
|
339
|
+
padding: 2px 0; // Add small vertical padding
|
|
339
340
|
`;
|
|
340
341
|
|
|
341
342
|
const ListElement = styled.button<{ active: boolean }>`
|
|
342
|
-
margin: 0
|
|
343
|
+
margin: 0 !important; // Remove vertical margins
|
|
343
344
|
font-size: ${uiFonts.size.small} !important;
|
|
344
345
|
padding: 2px;
|
|
345
346
|
all: unset;
|