@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rpg-engine/long-bow",
3
- "version": "0.7.10",
3
+ "version": "0.7.11",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.js",
6
6
  "typings": "dist/index.d.ts",
@@ -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.5rem 0 !important;
343
+ margin: 0 !important; // Remove vertical margins
343
344
  font-size: ${uiFonts.size.small} !important;
344
345
  padding: 2px;
345
346
  all: unset;