From 757304e0e20f921eebe49b6a0075b1f1d3920dba Mon Sep 17 00:00:00 2001 From: Mehdi Dara Date: Sun, 11 Feb 2024 12:10:55 +0330 Subject: [PATCH] =?UTF-8?q?=F0=9F=AA=84=20UI=20friendly=20buttons=20with?= =?UTF-8?q?=20the=20full=20rounded=20variant=20of=20border=20radius?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/ui/styles.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/styles.ts b/src/ui/styles.ts index f14a1fb..6d4eb69 100644 --- a/src/ui/styles.ts +++ b/src/ui/styles.ts @@ -1,5 +1,5 @@ export const buttonStyles = - 'flex items-center space-x-2 relative h-10 rounded-md border border-neutral-200 dark:border-neutral-800 bg-transparent px-4 text-neutral-950 dark:text-white hover:bg-neutral-200/50 dark:hover:bg-neutral-800/50 focus:outline-none focus:ring-1 focus:ring-neutral-300 dark:focus:ring-neutral-700 transition-colors duration-100'; + 'flex items-center space-x-2 relative h-10 rounded-full border border-neutral-200 dark:border-neutral-800 bg-transparent px-4 text-neutral-950 dark:text-white hover:bg-neutral-200/50 dark:hover:bg-neutral-800/50 focus:outline-none focus:ring-1 focus:ring-neutral-300 dark:focus:ring-neutral-700 transition-colors duration-100'; export const inputStyles = 'w-full border-b border-neutral-300 bg-white p-3 px-11 placeholder-neutral-500 focus:outline-none focus:ring-1 focus:ring-neutral-300 dark:border-neutral-800 dark:bg-neutral-900 dark:focus:ring-neutral-700';