mirror of
https://github.com/responsively-org/responsively-app
synced 2024-11-14 16:37:27 +00:00
Merge pull request #226 from RomainFrancony/fix-horizontal-layout
Drawer shrinking in horizontal layout
This commit is contained in:
commit
1258067d85
3 changed files with 4 additions and 2 deletions
|
@ -3,7 +3,7 @@
|
|||
flex: 1;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
overflow: scroll;
|
||||
overflow: auto;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
|
@ -17,7 +17,7 @@
|
|||
|
||||
.devicesContainer {
|
||||
display: flex;
|
||||
padding-bottom: 50px;
|
||||
padding-bottom: 100px;
|
||||
}
|
||||
|
||||
.tab {
|
||||
|
|
|
@ -7,6 +7,7 @@
|
|||
|
||||
.drawer.open {
|
||||
width: 290px;
|
||||
flex-shrink: 0;
|
||||
box-shadow: 5px 7px 5px 0px rgba(0, 0, 0, 0.75);
|
||||
margin: 0 10px 0 0;
|
||||
padding: 5px 5px 0 0;
|
||||
|
|
|
@ -29,6 +29,7 @@ const Browser = ({browser}) => {
|
|||
flex: 1,
|
||||
height: '100%',
|
||||
flexDirection: 'column',
|
||||
overflow: 'hidden',
|
||||
}}
|
||||
>
|
||||
<DevicePreviewerContainer />
|
||||
|
|
Loading…
Reference in a new issue