diff --git a/components/dashboard/src/components/InputWithCopy.tsx b/components/dashboard/src/components/InputWithCopy.tsx index b3c29ead4a657a..080d574078e8d7 100644 --- a/components/dashboard/src/components/InputWithCopy.tsx +++ b/components/dashboard/src/components/InputWithCopy.tsx @@ -27,13 +27,11 @@ export function InputWithCopy(props: { value: string; tip?: string; className?: type="text" value={props.value} /> -
handleCopyToClipboard(props.value)}> -
- - copy icon - -
-
+ ); } diff --git a/components/dashboard/src/index.css b/components/dashboard/src/index.css index db48bcdd27e2dd..d2783dd8fa2d09 100644 --- a/components/dashboard/src/index.css +++ b/components/dashboard/src/index.css @@ -55,6 +55,11 @@ button { @apply cursor-pointer px-4 py-2 my-auto bg-green-600 dark:bg-green-700 hover:bg-green-700 dark:hover:bg-green-600 text-gray-100 dark:text-green-100 text-sm font-medium rounded-md focus:outline-none focus:ring transition ease-in-out; } + button.reset { + @apply bg-transparent hover:bg-transparent font-normal rounded-none; + padding: unset; + text-align: start; + } button.secondary { @apply bg-gray-100 dark:bg-gray-700 hover:bg-gray-200 dark:hover:bg-gray-600 text-gray-500 dark:text-gray-100 hover:text-gray-600; }