Skip to content

Commit

Permalink
fix: Change bg-neutral to bg-border (#723)
Browse files Browse the repository at this point in the history
  • Loading branch information
amanharwara authored Nov 5, 2021
1 parent e1e38c6 commit 2fdb748
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ import { FunctionalComponent } from 'preact';

type Props = {
classes?: string;
}
};
export const HorizontalSeparator: FunctionalComponent<Props> = ({
classes = ''
classes = '',
}) => {
return <hr className={`h-1px w-full bg-neutral no-border ${classes}`} />;
return <hr className={`h-1px w-full bg-border no-border ${classes}`} />;
};
2 changes: 1 addition & 1 deletion app/assets/javascripts/components/shared/ModalDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export const ModalDialogLabel: FunctionComponent<{
Close
</div>
</div>
<hr className="h-1px bg-neutral no-border m-0" />
<hr className="h-1px bg-border no-border m-0" />
</AlertDialogLabel>
);

Expand Down

0 comments on commit 2fdb748

Please sign in to comment.