fix: replace border-gray-300 with a themable colour (#664)

Co-authored-by: Aman Harwara <amanharwara@protonmail.com>
This commit is contained in:
Gorjan Petrovski
2021-11-01 16:16:14 +01:00
committed by GitHub
parent 4f56c453cb
commit 32ced95f72
9 changed files with 11 additions and 11 deletions

View File

@@ -6,5 +6,5 @@ type Props = {
export const HorizontalSeparator: FunctionalComponent<Props> = ({
classes = ''
}) => {
return <hr className={`h-1px w-full bg-border no-border ${classes}`} />;
return <hr className={`h-1px w-full bg-neutral no-border ${classes}`} />;
};

View File

@@ -44,7 +44,7 @@ export const ModalDialogLabel: FunctionComponent<{
Close
</div>
</div>
<hr className="h-1px bg-border no-border m-0" />
<hr className="h-1px bg-neutral no-border m-0" />
</AlertDialogLabel>
);