From 75d0a48e35c091e338734fa8cdf1918945dce3b0 Mon Sep 17 00:00:00 2001 From: rob chang Date: Mon, 30 Sep 2024 16:03:07 -0400 Subject: [PATCH] fix: side bar updates --- examples/ui-demo/src/app/page.tsx | 2 +- .../configuration/Authentication.tsx | 2 +- .../src/components/configuration/Styling.tsx | 17 +++++++------- .../ui-demo/src/components/icons/palette.tsx | 22 +++++++++++++++++++ 4 files changed, 33 insertions(+), 10 deletions(-) create mode 100644 examples/ui-demo/src/components/icons/palette.tsx diff --git a/examples/ui-demo/src/app/page.tsx b/examples/ui-demo/src/app/page.tsx index 3299af1af6..7394ca1481 100644 --- a/examples/ui-demo/src/app/page.tsx +++ b/examples/ui-demo/src/app/page.tsx @@ -35,7 +35,7 @@ export default function Home() { className={`flex flex-col flex-1 px-4 md:px-6 lg:px-10 py-4 md:py-6 w-full max-w-screen-2xl mx-auto overflow-hidden ${inter.className}`} >
-
+
diff --git a/examples/ui-demo/src/components/configuration/Authentication.tsx b/examples/ui-demo/src/components/configuration/Authentication.tsx index be92d1ee7e..ee33bbf4a4 100644 --- a/examples/ui-demo/src/components/configuration/Authentication.tsx +++ b/examples/ui-demo/src/components/configuration/Authentication.tsx @@ -69,7 +69,7 @@ export const Authentication = ({ className }: { className?: string }) => { details={ <>
-

+

Add passkey after sign up

- + Branding
-

Theme

+

Theme

-

Brand color

+

Color

-

- Logo (optional) +

+ Logo{" "} + (optional)

-

- PNG, JPG, GIF files accepted +

+ SVG or PNG, max 320x48 px

diff --git a/examples/ui-demo/src/components/icons/palette.tsx b/examples/ui-demo/src/components/icons/palette.tsx new file mode 100644 index 0000000000..da059f1d70 --- /dev/null +++ b/examples/ui-demo/src/components/icons/palette.tsx @@ -0,0 +1,22 @@ +export const PaletteIcon = () => { + return ( + + + + + + ); +};