Add margin between edit and delete button

This commit is contained in:
WithoutPants
2019-08-16 07:52:05 +10:00
parent 7ee1b3f052
commit d7d164ee99
2 changed files with 8 additions and 3 deletions

View File

@@ -232,8 +232,8 @@ export const SceneEditPanel: FunctionComponent<IProps> = (props: IProps) => {
{renderMultiSelect("tags", tagIds)}
</FormGroup>
</div>
<Button text="Save" intent="primary" onClick={() => onSave()}/>
<Button text="Delete" intent="danger" onClick={() => setIsDeleteAlertOpen(true)}/>
<Button className="edit-button" text="Save" intent="primary" onClick={() => onSave()}/>
<Button className="edit-button" text="Delete" intent="danger" onClick={() => setIsDeleteAlertOpen(true)}/>
</>
);
};

View File

@@ -80,6 +80,10 @@ video.preview {
margin: 0 10px;
}
.edit-button {
margin-right: 10px;
}
.tag-item {
margin: 5px;
@@ -188,3 +192,4 @@ span.block {
}
}
}