File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed
modules/IDE/components/Editor Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -4,10 +4,16 @@ import { prop } from '../theme';
4
4
const RootPage = styled . div `
5
5
min-height: 100%;
6
6
display: flex;
7
+ justify-content: start;
7
8
flex-direction: column;
8
9
color: ${ prop ( 'primaryTextColor' ) } ;
9
10
background-color: ${ prop ( 'backgroundColor' ) } ;
10
11
height: ${ ( { fixedHeight } ) => fixedHeight || 'initial' } ;
12
+
13
+ @media (max-width: 770px) {
14
+ height: 100%;
15
+ overflow: hidden;
16
+ }
11
17
` ;
12
18
13
19
export default RootPage ;
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ export const EditorContainer = styled.div`
5
5
display: flex;
6
6
flex-direction: column;
7
7
height: 100%;
8
- padding-bottom: 5. 5rem;
8
+ padding-bottom: 5rem;
9
9
transform: ${ ( props ) =>
10
10
props . expanded ? 'translateX(50%)' : 'translateX(0)' } ;
11
11
You can’t perform that action at this time.
0 commit comments