mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-25 04:46:40 +07:00
fixed comment form button order
This commit is contained in:
parent
120bf8954c
commit
11a9aff8b6
2 changed files with 4 additions and 2 deletions
|
@ -79,8 +79,6 @@ const CommentForm: FC<IProps> = ({ comment, nodeId, saveComment, onCancelEdit })
|
||||||
<CommentFormAttachButtons onUpload={uploader.uploadFiles} />
|
<CommentFormAttachButtons onUpload={uploader.uploadFiles} />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<Filler />
|
|
||||||
|
|
||||||
<div className={styles.button_column}>
|
<div className={styles.button_column}>
|
||||||
{!!textarea && (
|
{!!textarea && (
|
||||||
<CommentFormFormatButtons
|
<CommentFormFormatButtons
|
||||||
|
@ -90,6 +88,8 @@ const CommentForm: FC<IProps> = ({ comment, nodeId, saveComment, onCancelEdit })
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<Filler />
|
||||||
|
|
||||||
<div className={styles.button_column}>
|
<div className={styles.button_column}>
|
||||||
{isLoading && <LoaderCircle size={20} />}
|
{isLoading && <LoaderCircle size={20} />}
|
||||||
|
|
||||||
|
|
|
@ -29,6 +29,8 @@
|
||||||
|
|
||||||
.button_column {
|
.button_column {
|
||||||
padding: $gap / 4;
|
padding: $gap / 4;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
}
|
}
|
||||||
|
|
||||||
.uploads {
|
.uploads {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue