Skip to content

Commit

Permalink
Switch color of integration keys
Browse files Browse the repository at this point in the history
  • Loading branch information
Anahkiasen committed Feb 21, 2024
1 parent 126634a commit ce9afd9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions resources/ts/Components/IntegrationCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,9 @@ export const IntegrationCard = ({ id, name, type, status, onEdit }: Props) => {
<Heading level={5} className="font-semibold min-w-[10rem]">
{t("integrations.test")}
</Heading>
<div className="flex gap-2 items-center bg-publiq-orange rounded px-3 p-1">
<div className="flex gap-2 items-center bg-[#fdf3ef] rounded px-3 p-1">
<span
className="overflow-hidden text-ellipsis text-white"
className="overflow-hidden text-ellipsis text-publiq-orange"
ref={codeFieldRef}
>
{id}
Expand All @@ -92,7 +92,7 @@ export const IntegrationCard = ({ id, name, type, status, onEdit }: Props) => {
>
<ButtonIconCopy
onClick={handleCopyToClipboard}
className={"text-white"}
className={"text-publiq-orange"}
/>
</Tooltip>
</div>
Expand Down

0 comments on commit ce9afd9

Please sign in to comment.