fix: Change bg-neutral to bg-border (#723)
This commit is contained in:
@@ -2,9 +2,9 @@ import { FunctionalComponent } from 'preact';
|
|||||||
|
|
||||||
type Props = {
|
type Props = {
|
||||||
classes?: string;
|
classes?: string;
|
||||||
}
|
};
|
||||||
export const HorizontalSeparator: FunctionalComponent<Props> = ({
|
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}`} />;
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -44,7 +44,7 @@ export const ModalDialogLabel: FunctionComponent<{
|
|||||||
Close
|
Close
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<hr className="h-1px bg-neutral no-border m-0" />
|
<hr className="h-1px bg-border no-border m-0" />
|
||||||
</AlertDialogLabel>
|
</AlertDialogLabel>
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user