fix: dark mode fixes (#9141)

Co-authored-by: gitstart-calcom <gitstart@users.noreply.github.com>
pull/9181/head
GitStart-Cal.com 2023-05-29 09:53:33 -06:00 committed by GitHub
parent 07749a9623
commit df7870bfce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -51,7 +51,7 @@ export default function ConnectionInfo({
) : ( ) : (
<OIDCInfo callbackUrl={connection.callbackUrl} /> <OIDCInfo callbackUrl={connection.callbackUrl} />
)} )}
<hr className="my-6 border-neutral-200" /> <hr className="border-subtle my-6" />
<div className="flex flex-col space-y-3"> <div className="flex flex-col space-y-3">
<Label>{t("danger_zone")}</Label> <Label>{t("danger_zone")}</Label>
<Dialog> <Dialog>
@ -99,7 +99,7 @@ const SAMLInfo = ({ acsUrl, entityId }: { acsUrl: string | null; entityId: strin
}} }}
type="button" type="button"
className="rounded-l-none py-[19px] text-base "> className="rounded-l-none py-[19px] text-base ">
<Clipboard className="h-5 w-5 text-gray-100 ltr:mr-2 rtl:ml-2" /> <Clipboard className="text-muted h-5 w-5 ltr:mr-2 rtl:ml-2" />
{t("copy")} {t("copy")}
</Button> </Button>
</Tooltip> </Tooltip>
@ -121,7 +121,7 @@ const SAMLInfo = ({ acsUrl, entityId }: { acsUrl: string | null; entityId: strin
}} }}
type="button" type="button"
className="rounded-l-none py-[19px] text-base "> className="rounded-l-none py-[19px] text-base ">
<Clipboard className="h-5 w-5 text-gray-100 ltr:mr-2 rtl:ml-2" /> <Clipboard className="text-muted h-5 w-5 ltr:mr-2 rtl:ml-2" />
{t("copy")} {t("copy")}
</Button> </Button>
</Tooltip> </Tooltip>
@ -157,7 +157,7 @@ const OIDCInfo = ({ callbackUrl }: { callbackUrl: string | null }) => {
}} }}
type="button" type="button"
className="rounded-l-none py-[19px] text-base "> className="rounded-l-none py-[19px] text-base ">
<Clipboard className="h-5 w-5 text-gray-100 ltr:mr-2 rtl:ml-2" /> <Clipboard className="text-muted h-5 w-5 ltr:mr-2 rtl:ml-2" />
{t("copy")} {t("copy")}
</Button> </Button>
</Tooltip> </Tooltip>