File tree Expand file tree Collapse file tree 2 files changed +16
-4
lines changed
client/src/containers/EditCodeContainer Expand file tree Collapse file tree 2 files changed +16
-4
lines changed Original file line number Diff line number Diff line change @@ -73,6 +73,10 @@ and then open [Logz.io](https://app.logz.io/#/dashboard/metrics).
73
73
74
74
## Changelong
75
75
76
+ 1.1.3:
77
+
78
+ - Update UI
79
+
76
80
1.1.2:
77
81
78
82
- Update docker image, to upload playwright to the Docker.
Original file line number Diff line number Diff line change 1
1
import React , { FunctionComponent , useState } from 'react' ;
2
2
import styled from 'styled-components' ;
3
3
4
- import Container from '../../components/Container' ;
5
-
6
4
import CodeEditor from '../../components/CodeEditor' ;
7
5
import EnvVariableWrapper from '../EnvVariableContainer' ;
8
6
import Text from '../../components/Text' ;
@@ -13,6 +11,15 @@ import Button from '../../components/Button';
13
11
14
12
import api from '../../utils/api' ;
15
13
14
+ const ContainerDiv = styled . div `
15
+ position: relative;
16
+ margin-left: 284px;
17
+ margin-right: auto;
18
+ width: calc(100% - 284px);
19
+ max-width: 1280px;
20
+ padding-bottom: 24px;
21
+ ` ;
22
+
16
23
const TopWrapper = styled . div `
17
24
margin-bottom: 24px;
18
25
display: flex;
@@ -32,6 +39,7 @@ const ContainerSteps = styled.div`
32
39
margin-right: 15px;
33
40
margin-left: 15px;
34
41
height: 100%;
42
+ min-height: 700px;
35
43
` ;
36
44
const SelectWrapper = styled . div `
37
45
position: relative;
@@ -122,7 +130,7 @@ const EditCodeContainer: FunctionComponent<IProps> = ({
122
130
} ;
123
131
124
132
return (
125
- < Container >
133
+ < ContainerDiv >
126
134
< ContainerSteps >
127
135
< TopWrapper >
128
136
< TextWrapper >
@@ -183,7 +191,7 @@ const EditCodeContainer: FunctionComponent<IProps> = ({
183
191
</ StatusTest >
184
192
</ BottomWrapper >
185
193
</ ContainerSteps >
186
- </ Container >
194
+ </ ContainerDiv >
187
195
) ;
188
196
} ;
189
197
You can’t perform that action at this time.
0 commit comments