Skip to content

Commit

Permalink
update UI (#6)
Browse files Browse the repository at this point in the history
* update UI

* update ui
  • Loading branch information
resdenia authored Feb 7, 2023
1 parent 2c19f8c commit e54ec3c
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 4 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,10 @@ and then open [Logz.io](https://app.logz.io/#/dashboard/metrics).

## Changelong

1.1.3:

- Update UI

1.1.2:

- Update docker image, to upload playwright to the Docker.
Expand Down
16 changes: 12 additions & 4 deletions client/src/containers/EditCodeContainer/index.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
import React, { FunctionComponent, useState } from 'react';
import styled from 'styled-components';

import Container from '../../components/Container';

import CodeEditor from '../../components/CodeEditor';
import EnvVariableWrapper from '../EnvVariableContainer';
import Text from '../../components/Text';
Expand All @@ -13,6 +11,15 @@ import Button from '../../components/Button';

import api from '../../utils/api';

const ContainerDiv = styled.div`
position: relative;
margin-left: 284px;
margin-right: auto;
width: calc(100% - 284px);
max-width: 1280px;
padding-bottom: 24px;
`;

const TopWrapper = styled.div`
margin-bottom: 24px;
display: flex;
Expand All @@ -32,6 +39,7 @@ const ContainerSteps = styled.div`
margin-right: 15px;
margin-left: 15px;
height: 100%;
min-height: 700px;
`;
const SelectWrapper = styled.div`
position: relative;
Expand Down Expand Up @@ -122,7 +130,7 @@ const EditCodeContainer: FunctionComponent<IProps> = ({
};

return (
<Container>
<ContainerDiv>
<ContainerSteps>
<TopWrapper>
<TextWrapper>
Expand Down Expand Up @@ -183,7 +191,7 @@ const EditCodeContainer: FunctionComponent<IProps> = ({
</StatusTest>
</BottomWrapper>
</ContainerSteps>
</Container>
</ContainerDiv>
);
};

Expand Down

0 comments on commit e54ec3c

Please sign in to comment.