Skip to content

Commit

Permalink
fix error overlapping
Browse files Browse the repository at this point in the history
  • Loading branch information
Anastasiia Moskvina committed May 16, 2022
1 parent f04567a commit c31d750
Showing 1 changed file with 7 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,6 @@ import { Button } from '@mui/material'
const TemplateEditDialog = styled(Dialog)`
background-color: #fff;
// Overriding margins set in Dialog.module.less
& > div {
margin: 0;
}
& header {
text-transform: none;
border-bottom: 1px solid #e1e5ea;
Expand All @@ -45,6 +40,11 @@ const TemplateEditDialog = styled(Dialog)`
& form {
display: flex;
& label::after {
top: 92px;
margin-right: 12px;
}
}
`

Expand Down Expand Up @@ -92,7 +92,7 @@ const NameInput = styled(Field)`
display: block;
width: 100%;
box-sizing: border-box;
padding: 4px 8px;
padding: 4px 16px 4px 8px;
border: 1px solid #cad3dd;
border-radius: 4px;
line-height: 16px;
Expand Down Expand Up @@ -231,6 +231,7 @@ class Attach extends Component {
valid={() => this.props.formState.valid && name}
params={prop}
buttons={[]}
needMargin={false}
>
<Form
schema={attachSchema}
Expand Down

0 comments on commit c31d750

Please sign in to comment.