Ran prettier

This commit is contained in:
James McKenzie 2021-04-28 16:20:34 +12:00
parent 0e8b97e363
commit f705127ce6
3 changed files with 3 additions and 7 deletions

View File

@ -42,7 +42,7 @@ html {
padding: 5px;
flex-wrap: nowrap;
}
.panel{
.panel {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
@ -95,17 +95,14 @@ html {
}
.modal-main button:last-of-type {
margin: auto;
display: block;
background-color: darkRed;
color: #CCC
color: #ccc;
}
.modal-main button {
display: block;
text-align: center;

View File

@ -180,7 +180,7 @@ class Header extends React.Component<HeaderProps, State> {
</Modal>
<Modal show={this.state.showColumn} handleClose={this.hideModal}>
<h3>Lets add a column! 🤔</h3>
<h3>Lets add a column! 🤔</h3>
<label>
{" "}

View File

@ -1,4 +1,3 @@
type ModalProps = {
handleClose: () => void;
show: boolean;