Skip to content

Commit

Permalink
fix: add missing file
Browse files Browse the repository at this point in the history
  • Loading branch information
Birkbjo committed Dec 9, 2024
1 parent 78cbf0f commit 8435f24
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions src/components/merge/MergeForm.module.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
.mergeForm {
display: flex;
flex-direction: column;
padding: 16px;
gap: var(--spacers-dp16);
box-shadow: var(--elevations-e100);
border-radius: 3px;
}
2 changes: 1 addition & 1 deletion src/components/merge/MergeFormBase.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export const MergeFormBase = <TValues extends MergeFormValuesBase>({
export const StyledMergeForm = ({
children,
...formProps
}: React.PropsWithChildren<React.ComponentProps<'form'>>) => (
}: React.ComponentProps<'form'>) => (
<form className={cx(css.mergeForm, formProps.className)} {...formProps}>
{children}
</form>
Expand Down

0 comments on commit 8435f24

Please sign in to comment.