make buttons wider

This commit is contained in:
2019-02-10 16:38:07 +03:00
parent 1aa331d6db
commit a1e0e58008
2 changed files with 5 additions and 0 deletions

View File

@@ -66,6 +66,9 @@
margin-right: 0;
display: flex;
justify-content: end;
button {
width: 3rem;
}
}
margin-bottom: 1rem;
}

View File

@@ -70,6 +70,7 @@ export class DocumentEditComponent extends React.PureComponent<
<Button
icon="trash"
minimal={true}
intent="danger"
onClick={() => {
this.props.history.push(`/`);
this.props.deleteDoc(this.state.id);
@@ -87,6 +88,7 @@ export class DocumentEditComponent extends React.PureComponent<
/>
<Button
icon="tick"
intent="success"
minimal={true}
onClick={() => {
this.update();