@rpg-engine/long-bow 0.8.215 → 0.8.216
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 +1 -1
- 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 +1 -1
- package/dist/long-bow.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/Store/Store.tsx +2 -1
package/package.json
CHANGED
|
@@ -556,9 +556,10 @@ const Container = styled.div`
|
|
|
556
556
|
display: flex;
|
|
557
557
|
flex-direction: column;
|
|
558
558
|
width: 100%;
|
|
559
|
-
height: 100
|
|
559
|
+
height: calc(100% - 48px);
|
|
560
560
|
gap: 0.5rem;
|
|
561
561
|
position: relative;
|
|
562
|
+
overflow: hidden;
|
|
562
563
|
`;
|
|
563
564
|
|
|
564
565
|
const HeaderRow = styled.div`
|