From ccc80d5ce47acf4fcfe550be3dfba9e4db063eb8 Mon Sep 17 00:00:00 2001 From: Pablo Lara Date: Wed, 30 Oct 2024 04:03:51 +0100 Subject: [PATCH] WIP --- .../providers/(set-up-provider)/layout.tsx | 4 ++-- .../workflow/forms/connect-account-form.tsx | 2 +- tailwind.config.js | 14 +++++++++++--- 3 files changed, 14 insertions(+), 6 deletions(-) diff --git a/app/(prowler)/providers/(set-up-provider)/layout.tsx b/app/(prowler)/providers/(set-up-provider)/layout.tsx index 59aa669510..b57ca47ef9 100644 --- a/app/(prowler)/providers/(set-up-provider)/layout.tsx +++ b/app/(prowler)/providers/(set-up-provider)/layout.tsx @@ -20,10 +20,10 @@ export default function ProviderLayout({ children }: ProviderLayoutProps) { />
-
+
-
{children}
+
{children}
); diff --git a/components/providers/workflow/forms/connect-account-form.tsx b/components/providers/workflow/forms/connect-account-form.tsx index 71d90ffaaa..de5f23c45a 100644 --- a/components/providers/workflow/forms/connect-account-form.tsx +++ b/components/providers/workflow/forms/connect-account-form.tsx @@ -97,7 +97,7 @@ export const ConnectAccountForm = () => { control={form.control} name="providerAlias" type="text" - label="Alias" + label="Alias (optional)" labelPlacement="inside" placeholder={"Enter the provider alias"} variant="bordered" diff --git a/tailwind.config.js b/tailwind.config.js index ce91ea47b0..9d06ef139a 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -83,7 +83,7 @@ module.exports = { }, }, danger: "#E11D48", - action: "#6af400", + action: "#9FD655", }, fontFamily: { sans: ["var(--font-sans)"], @@ -177,13 +177,21 @@ module.exports = { dark: { colors: { primary: { - DEFAULT: "#6af400", + DEFAULT: "#9FD655", foreground: "#000000", }, - focus: "#6af400", + focus: "#9FD655", background: "#030921", }, }, + light: { + colors: { + primary: { + DEFAULT: "#9FD655", + foreground: "#000000", + }, + }, + }, }, }), ],