Skip to content

Commit

Permalink
fix(ui): new article modal width
Browse files Browse the repository at this point in the history
  • Loading branch information
ncarlier committed Jul 17, 2021
1 parent de98974 commit a0280bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/articles/components/AddArticleLink.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ export default ({ category, onSuccess }: Props) => {
onRequestClose={hideAddModal}
className={styles.dialog}
overlayClassName={styles.overlay}
style={{ content: { minWidth: '50vw' } }}
>
<AddArticleForm
category={category}
style={{ minWidth: '50vw' }}
onSuccess={(a) => {
onSuccess(a)
hideAddModal()
Expand Down

0 comments on commit a0280bb

Please sign in to comment.