diff --git a/web-svelte/src/lib/components/Button.svelte b/web-svelte/src/lib/components/Button.svelte
index f890df9..5f3e679 100644
--- a/web-svelte/src/lib/components/Button.svelte
+++ b/web-svelte/src/lib/components/Button.svelte
@@ -74,9 +74,10 @@
{disabled}
{onclick}
class={cn(
- "inline-flex items-center justify-center rounded-lg border font-medium cursor-pointer",
- "transition-colors duration-150",
+ "inline-flex items-center justify-center border font-medium cursor-pointer",
+ "transition-all duration-150 rounded-xl",
"disabled:opacity-50 disabled:cursor-not-allowed",
+ "active:scale-[0.98]",
variantClasses.base,
variantClasses.hover,
sizeClasses,
diff --git a/web-svelte/src/lib/components/ConnectionsPanel.svelte b/web-svelte/src/lib/components/ConnectionsPanel.svelte
index 444aa93..45e63cc 100644
--- a/web-svelte/src/lib/components/ConnectionsPanel.svelte
+++ b/web-svelte/src/lib/components/ConnectionsPanel.svelte
@@ -41,8 +41,7 @@
bind:this={sectionEl}
style="opacity: 0;"
class={cn(
- "flex flex-col overflow-hidden rounded-xl border shadow-sm transition-all duration-200",
- "hover:shadow-lg hover:-translate-y-px",
+ "flex flex-col overflow-hidden rounded-3xl border shadow-sm transition-all duration-200",
"bg-card border-border",
)}
>
@@ -55,7 +54,7 @@
)}
>
{t("connections")}
diff --git a/web-svelte/src/lib/components/DeleteModal.svelte b/web-svelte/src/lib/components/DeleteModal.svelte
index c51f97f..d1f16df 100644
--- a/web-svelte/src/lib/components/DeleteModal.svelte
+++ b/web-svelte/src/lib/components/DeleteModal.svelte
@@ -106,9 +106,8 @@