mirror of
https://github.com/stashapp/stash.git
synced 2025-12-26 02:04:12 +01:00
Add margin between edit and delete button
This commit is contained in:
parent
7ee1b3f052
commit
d7d164ee99
2 changed files with 8 additions and 3 deletions
|
|
@ -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)}/>
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
|
|
|||
|
|
@ -80,6 +80,10 @@ video.preview {
|
|||
margin: 0 10px;
|
||||
}
|
||||
|
||||
.edit-button {
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
.tag-item {
|
||||
margin: 5px;
|
||||
|
||||
|
|
@ -187,4 +191,5 @@ span.block {
|
|||
margin: 0 10px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue