Update RetryBtn styling for smaller button
Browse filesReduced button height, padding, and icon size for a more compact appearance. Adjusted spacing and font size to improve visual consistency.
src/lib/components/RetryBtn.svelte
CHANGED
|
@@ -12,7 +12,7 @@
|
|
| 12 |
<button
|
| 13 |
type="button"
|
| 14 |
onclick={onClick}
|
| 15 |
-
class="btn flex h-
|
| 16 |
>
|
| 17 |
-
<CarbonRotate360 class="mr-
|
| 18 |
</button>
|
|
|
|
| 12 |
<button
|
| 13 |
type="button"
|
| 14 |
onclick={onClick}
|
| 15 |
+
class="btn flex h-7 rounded-lg border bg-white px-2 py-1 text-sm text-gray-500 shadow-sm hover:bg-gray-100 dark:border-gray-600 dark:bg-gray-700 dark:text-gray-300 dark:hover:bg-gray-600 {classNames}"
|
| 16 |
>
|
| 17 |
+
<CarbonRotate360 class="mr-1 -translate-y-px text-[.65rem]" /> Retry
|
| 18 |
</button>
|