mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-07-27 00:19:55 +03:00
chore(*): Update devui version. Fix the container growing out of viewport when too many actions.
This commit is contained in:
parent
0e366fccc3
commit
39fbdef4e3
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "devui",
|
||||
"version": "1.0.0-8",
|
||||
"version": "1.0.0-9",
|
||||
"description": "Reusable React components for building DevTools monitors and apps.",
|
||||
"homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/devui",
|
||||
"bugs": {
|
||||
|
|
|
@ -6,6 +6,8 @@ export const MainContainerWrapper = styled.div`
|
|||
height: 100%;
|
||||
width: 100%;
|
||||
flex-flow: column nowrap;
|
||||
flex-shrink: 1;
|
||||
min-height: 0;
|
||||
background-color: ${(props) => color(props.theme.base00, 'lighten', 0.03)};
|
||||
color: ${(props) => props.theme.base07};
|
||||
font-size: 12px;
|
||||
|
@ -30,7 +32,8 @@ export const MainContainerWrapper = styled.div`
|
|||
flex-grow: 1;
|
||||
display: flex;
|
||||
flex-flow: column nowrap;
|
||||
height: 100%;
|
||||
flex-shrink: 1;
|
||||
min-height: 0;
|
||||
|
||||
> div {
|
||||
flex-grow: 1;
|
||||
|
@ -43,4 +46,6 @@ export const ContainerWrapper = styled.div`
|
|||
height: 100%;
|
||||
width: 100%;
|
||||
flex-flow: column nowrap;
|
||||
flex-shrink: 1;
|
||||
min-height: 0;
|
||||
`;
|
||||
|
|
|
@ -45,7 +45,7 @@
|
|||
"@redux-devtools/log-monitor": "^2.3.0",
|
||||
"@redux-devtools/slider-monitor": "^2.0.0-7",
|
||||
"d3-state-visualizer": "^1.4.0",
|
||||
"devui": "^1.0.0-8",
|
||||
"devui": "^1.0.0-9",
|
||||
"javascript-stringify": "^2.0.1",
|
||||
"jsan": "^3.1.13",
|
||||
"jsondiffpatch": "^0.4.1",
|
||||
|
|
Loading…
Reference in New Issue
Block a user