@rezcom/rez-components 0.0.48 → 0.0.49
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/ui/Button.svelte +1 -1
- package/package.json +1 -1
package/dist/ui/Button.svelte
CHANGED
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
}: ButtonProps = $props();
|
|
52
52
|
|
|
53
53
|
const baseClass =
|
|
54
|
-
'group relative inline-flex overflow-hidden items-center justify-center rounded-md px-2 py-2 text-center
|
|
54
|
+
'group relative inline-flex overflow-hidden items-center justify-center rounded-md px-2 py-2 text-center tracking-wide focus:outline-hidden focus:ring-3 focus:ring-offset-white transition duration-200 ease-in-out'.concat(
|
|
55
55
|
active ? ' hover:cursor-pointer' : ''
|
|
56
56
|
);
|
|
57
57
|
|